优秀的编程知识分享平台

网站首页 > 技术文章 正文

Springboot启动流程及出现的一些异常(IT枫斗者)

nanyue 2024-09-07 16:42:44 技术文章 10 ℃

首先:什么是Spring boot?

Spring Boot作为Spring的脚手架框架,其本身并不提供Spring的核心功能,而是来达到快速构建项目、预置三方配置、开箱即用的目的。

Spring Boot使用“习惯优于配置”的理念让你的项目快速地运行起来,使用Spring Boot很容易创建一个能独立运行、准生产级别、基于Spring框架的项目,使用Spring Boot你可以不用或者只需要很少的Spring配置。

Spring Boot的优点:

  • 可以快速构建项目
  • 可以对主流开发框架的无配置集成
  • 项目可独立运行,无需外部依赖Servlet容器
  • 提供运行时的应用监控
  • 可以极大地提高开发、部署效率

其次:启动过程

一、SpringBoot启动的时候,会构造一个SpringApplication的实例,构造SpringApplication的时候会进行初始化的工作,初始化的时候会做以下几件事

  • 把参数sources设置到SpringApplication属性中,这个sources可以是任何类型的参数.
  • 判断是否是web程序,并设置到webEnvironment的boolean属性中.
  • 创建并初始化ApplicationInitializer,设置到initializers属性中 。
  • 创建并初始化ApplicationListener,设置到listeners属性中 。
  • 初始化主类mainApplicatioClass。


二、SpringApplication构造完成之后调用run()方法,启动SpringApplication,run()方法执行的时候会做以下几件事

  • 构造一个StopWatch计时器,用来记录SpringBoot的启动时间 。
  • 初始化监听器,获取SpringApplicationRunListeners并启动监听,用于监听run方法的执行。
  • 创建并初始化ApplicationArguments,获取run方法传递的args参数。
  • 创建并初始化ConfigurableEnvironment(环境配置)。封装main方法的参数,初始化参数,写入到 Environment中,发布 ApplicationEnvironmentPreparedEvent(环境事件),做一些绑定后返回Environment。
  • 打印banner和版本。
  • 构造Spring容器(ApplicationContext)上下文。先填充Environment环境和设置的参数,如果application有设置beanNameGenerator(bean)、resourceLoader(加载器)就将其注入到上下文中。调用初始化的切面,发布ApplicationContextInitializedEvent(上下文初始化)事件。
  • SpringApplicationRunListeners发布finish事件。
  • StopWatch计时器停止计时,日志打印总共启动的时间。
  • 发布SpringBoot程序已启动事件(started())
  • 调用ApplicationRunner和CommandLineRunner
  • 最后发布就绪事件ApplicationReadyEvent,标志着SpringBoot可以处理接受的请求了(running())

最后:启动出现的异常及解决方式

1、 问题

SpringBoot本身需要引入自身的一个parent,但是pom里面一般都已经存在了一个parent,这时就不能在引入springBoot的parent

解决方案:

org.springframework.boot

spring-boot-starter-web

1.3.3.RELEASE

org.springframework.boot

spring-boot-dependencies

1.5.6.RELEASE

pom

import

2、异常

Exception in thread "main" java.lang.IllegalArgumentException: Cannot instantiate interface org.springframework.context.ApplicationListener : org.springframework.boot.logging.ClasspathLoggingApplicationListener。。。。。。Caused by: java.lang.NoClassDefFoundError: org/springframework/context/event/GenericApplicationListener

解决方案:

这个问题可能是由于Spring的版本低导致,升级spring版本。亲测到4.2.5.RELEASE可以

4.2.5.RELEASE


3、异常

Exception in thread "main" java.lang.IllegalArgumentException: LoggerFactory is not a Logback LoggerContext but Logback is on the classpath. Either remove Logback or the competing implementation (class org.slf4j.impl.Log4jLoggerFactory loaded from file:/D:/maven/repository/org/slf4j/slf4j-log4j12/1.7.5/slf4j-log4j12-1.7.5.jar). If you are using WebLogic you will need to add 'org.slf4j' to prefer-application-packages in WEB-INF/weblogic.xml Object of class [org.slf4j.impl.Log4jLoggerFactory] must be an instance of class ch.qos.logback.classic.LoggerContextat org.springframework.util.Assert.isInstanceOf(Assert.java:346)at org.springframework.boot.logging.logback.LogbackLoggingSystem.getLoggerContext(LogbackLoggingSystem.java:221)

解决方案:

这个异常是由于打印日志的jar冲突导致,SpringBoot本身有打印日志的功能,如果跟本地的冲突,就需要去掉,如下:

org.springframework.boot

spring-boot-starter-web

1.3.3.RELEASE

org.springframework.boot

spring-boot-starter-logging


4、异常

Cannot instantiate factory class: org.springframework.boot.autoconfigure.AutoConfigurationImportFilterCaused by: java.lang.IllegalAccessException: Class org.springframework.core.io.support.SpringFactoriesLoader can not access a member of class org.springframework.boot.autoconfigure.condition.OnClassCondition with modifiers ""

解决方案:

这种可以检查org.springframework.boot的版本,可能是版本不兼容,我这里一开始设置的1.5.6.RELEASE,一直出异常,后来SpringBoot的版本改成全部改成1.3.3.RELEASE 把Spring的版本改成4.2.5.RELEASE,即可。

5、 异常

SpringBoot启动

xport.annotation.AnnotationMBeanExporter -Unregistering JMX-exposed beans on shutdown ,tomcat也没有运行

可能原因1:

看看是否屏蔽了,检查 spring-boot-starter-web 这个下面是否屏蔽了spring-boot-starter-tomcat,如果有,请去掉

org.springframework.boot

spring-boot-starter-tomcat


可能原因2:

org.springframework.boot

spring-boot-starter-tomcat

provided

将provided注释掉

6、异常

Caused by: java.lang.NoClassDefFoundError: org/springframework/beans/factory/ObjectProviderCaused by: java.lang.ClassNotFoundException: org.springframework.beans.factory.ObjectProvider

解决方案:

这个异常最扯了,搞了半天是SpringBoot的版本不兼容,切换了一个版本到1.3.3.RELEASE 这里就好了

org.springframework.boot

spring-boot-starter-web

1.3.3.RELEASE

org.springframework.boot

spring-boot-starter-logging

建议把org.springframework.boot这下面的版本都改成1.3.3.RELEASE

最近发表
标签列表