16:51:36.819 [main] INFO c.r.RuoYiApplication - [logStarting,55] - Starting RuoYiApplication using Java 1.8.0_382 on localhost.localdomain with PID 3169 (/usr/local/nginx/html/ruoyi-admin.jar started by root in /usr/local/nginx/html) 16:51:36.817 [background-preinit] INFO o.h.v.i.util.Version - [,21] - HV000001: Hibernate Validator 6.2.3.Final 16:51:36.819 [main] DEBUG c.r.RuoYiApplication - [logStarting,56] - Running with Spring Boot v2.5.14, Spring v5.3.20 16:51:36.821 [main] INFO c.r.RuoYiApplication - [logStartupProfileInfo,686] - The following 1 profile is active: 'druid' 16:51:38.562 [main] INFO o.a.s.c.e.EhCacheManager - [getCache,169] - Using existing EHCache named [sys-authCache] 16:51:39.324 [main] INFO o.a.s.c.e.EhCacheManager - [getCache,169] - Using existing EHCache named [loginRecordCache] 16:51:39.844 [main] INFO c.a.d.p.DruidDataSource - [init,998] - {dataSource-1} inited 16:51:39.855 [main] DEBUG c.r.s.m.S.selectConfigList - [debug,137] - ==> Preparing: select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark from sys_config 16:51:40.056 [main] DEBUG c.r.s.m.S.selectConfigList - [debug,137] - ==> Parameters: 16:51:40.076 [main] DEBUG c.r.s.m.S.selectConfigList - [debug,137] - <== Total: 0 16:51:40.193 [main] INFO o.a.s.c.e.EhCacheManager - [getCache,169] - Using existing EHCache named [sys-userCache] 16:51:40.584 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ['http-nio-8088'] 16:51:40.585 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] 16:51:40.585 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.63] 16:51:40.634 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext 16:51:40.867 [main] DEBUG c.r.s.m.S.selectDictDataList - [debug,137] - ==> Preparing: select dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, remark from sys_dict_data WHERE status = ? 16:51:40.874 [main] DEBUG c.r.s.m.S.selectDictDataList - [debug,137] - ==> Parameters: 0(String) 16:51:40.876 [main] DEBUG c.r.s.m.S.selectDictDataList - [debug,137] - <== Total: 0 16:51:41.019 [main] INFO o.q.i.StdSchedulerFactory - [instantiate,1220] - Using default implementation for ThreadExecutor 16:51:41.042 [main] INFO o.q.c.SchedulerSignalerImpl - [,61] - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl 16:51:41.043 [main] INFO o.q.c.QuartzScheduler - [,229] - Quartz Scheduler v.2.3.2 created. 16:51:41.043 [main] INFO o.q.s.RAMJobStore - [initialize,155] - RAMJobStore initialized. 16:51:41.044 [main] INFO o.q.c.QuartzScheduler - [initialize,294] - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' 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.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.

16:51:41.044 [main] INFO o.q.i.StdSchedulerFactory - [instantiate,1374] - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. 16:51:41.045 [main] INFO o.q.i.StdSchedulerFactory - [instantiate,1378] - Quartz scheduler version: 2.3.2 16:51:41.045 [main] INFO o.q.c.QuartzScheduler - [setJobFactory,2293] - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@e19bb76 16:51:41.063 [main] DEBUG c.r.q.m.S.selectJobAll - [debug,137] - ==> Preparing: select job_id, job_name, job_group, invoke_target, cron_expression, misfire_policy, concurrent, status, create_by, create_time, remark from sys_job 16:51:41.064 [main] DEBUG c.r.q.m.S.selectJobAll - [debug,137] - ==> Parameters: 16:51:41.065 [main] DEBUG c.r.q.m.S.selectJobAll - [debug,137] - <== Total: 0 16:51:42.162 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ['http-nio-8088'] 16:51:42.518 [main] INFO o.q.c.QuartzScheduler - [start,547] - Scheduler quartzScheduler_$_NON_CLUSTERED started. 16:51:42.527 [main] INFO c.r.RuoYiApplication - [logStarted,61] - Started RuoYiApplication in 6.085 seconds (JVM running for 6.543)

中文分析以上日志内容:根据以上日志分析,可以得出以下结论:

  1. 该应用使用的Java版本为1.8.0_382。
  2. 应用使用的Spring Boot版本为2.5.14,Spring版本为5.3.20。
  3. 应用的活动配置文件为'druid'。
  4. 应用使用了Hibernate Validator 6.2.3.Final。
  5. 应用使用了EHCache来管理缓存,已存在名为'sys-authCache'、'loginRecordCache'、'sys-userCache'的缓存。
  6. 应用使用了Tomcat作为Servlet引擎,版本为9.0.63。
  7. 应用使用了Spring的Embedded WebApplicationContext。
  8. 应用使用了Quartz调度器,版本为2.3.2。
  9. 应用没有配置数据库持久化,使用的是内存中的RAMJobStore。
  10. 应用成功启动,启动时间为6.085秒,JVM运行时间为6.543秒。
RuoYi 应用启动日志分析 - 详细启动过程记录

原文地址: https://www.cveoy.top/t/topic/qx59 著作权归作者所有。请勿转载和采集!

免费AI点我,无需注册和登录