创建springboot2.1项目运行报错

Posted 李科技

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建springboot2.1项目运行报错相关的知识,希望对你有一定的参考价值。

刚创建好一个项目,运行就报错:in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/logging/,然后百度了一下说maven没有这个jar,进仓库看了发现真的没有,然后就去下了一个

<dependency>
  <groupId>commons-logging</groupId>
  <artifactId>commons-logging-api</artifactId>
  <version>1.1</version>
</dependency>

然后添加后继续运行,发现又报错了:java.lang.NoClassDefFoundError: org/springframework/expression/ParserContext,

然后百度了一下https://blog.csdn.net/u011008029/article/details/59110280,又少包了,重新去下载一个就可以了

       <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-expression</artifactId>
            <version>5.1.3.RELEASE</version>
        </dependency>

要注意,先去把maven仓库原有的给删除掉,然后再引入重新下载就好了

这样就没问题了

 

以上是关于创建springboot2.1项目运行报错的主要内容,如果未能解决你的问题,请参考以下文章

报错:✘ http://eslint.org/docs/rules/indent Expected indentation of 0 s paces but found 2(代码片段

项目启动报错Failed to configure a DataSource: 'url' attribute is not specified and no embedde(代码片段

错误记录Flutter 混合开发获取 BinaryMessenger 报错 ( FlutterActivityAndFragmentDelegate.getFlutterEngine() )(代码片段

Spring Boot 2.1.2 创建动态数据库连接只是为了运行查询

maven web项目的web.xml报错The markup in the document following the root element must be well-formed.(代码片段

[异常解决] Keil安装好nRF51822开发环境,运行DEMO报错:Error:“GPIOTE_CONFIG_NUM_OF_LOW_POWER_ENVENTS” is undefined(代码片段