报错:dependencies.dependency.version‘ for com.alibaba:druid:jar is missing

这篇具有很好参考价值的文章主要介绍了报错:dependencies.dependency.version‘ for com.alibaba:druid:jar is missing。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

我在pom.xml中是这样写的:
 

<dependency>
    <groupId>com.alibaba</groupId>
    <artifactId>druid</artifactId>
    <version>1.2.6</version>
</dependency>

然后就报错:dependencies.dependency.version' for com.alibaba:druid:jar is missing。
然而我明明有写版本,并且在右侧下载的依赖中也可以找到druid的依赖。
有时这个报错消失,但是在applicantion.yml中编写关于druid配置:

spring:
  datasource:
    type: com.alibaba.druid.pool.DruidDataSource
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/mybatisplus_db?serverTimezone=UTC
    username: root
    password: Aa123456

却第二行爆红。
 

最后发现竟然是版本问题,改为1.0.11版本竟然就好了。文章来源地址https://www.toymoban.com/news/detail-596901.html

<dependency>
    <groupId>com.alibaba</groupId>
    <artifactId>druid</artifactId>
    <version>1.0.11</version>
</dependency>

到了这里,关于报错:dependencies.dependency.version‘ for com.alibaba:druid:jar is missing的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • UNITY报错:An error occurred while resolving packages: Project has invalid dependencies: com.unit

    打开unity出现了这样的报错: An error occurred while resolving packages:   Project has invalid dependencies:     com.unity.render-pipelines.universal: Package [com.unity.render-pipelines.universal@12.1.2] cannot be found 这里在同站其他博主提供的方法中得到灵感,现已解决。原博主给出的解决思路是项目具有无效的

    2024年02月03日
    浏览(48)
  • maven报The POM for com.**** is invalid, transitive dependencies (if any) will not be available问题解决

    spring-boot版本2.3.0 The POM for org.mybatis.spring.boot:mybatis-spring-boot-starter:jar:1.3.0 is invalid, transitive dependencies (if any) will not be available: 1 problem was encountered while building the effective model for org.mybatis.spring.boot:mybatis-spring-boot-starter:1.3.0 mybatis的版本1.3.0 从git上拉下来的代码,刚开始是MyBatisC

    2024年02月15日
    浏览(46)
  • 打开项目出现报错:An error occurred while resolving packages: Project has invalid dependencies: com.unity.

    最近做unity项目,git pull别人的项目,打开后出现这样的报错: An error occurred while resolving packages: Project has invalid dependencies: com.unity.visualeffectgraph: Package [com.unity.visualeffectgraph@12.1.10] cannot be found A re-import of the project may be required to fix the issue or a manual modification of ... 翻译是: 解析

    2024年02月12日
    浏览(81)
  • IDEA项目启动报错:Failed to execute goal on project xxx: Could not resolve dependencies for project

    [ERROR] Failed to execute goal on project xxx: Could not resolve dependencies for project Failed to collect dependencies at xxx .xxx-service:jar:dev: Failed to read artifact descriptor for xxxx/maven-snapshots/ during a previous attempt. This failure was cached in the local repository and resolution is not reattempted until the update interval of nexus-snaps

    2024年02月03日
    浏览(114)
  • ‘dependencies.dependency.systemPath‘ for *:*:jar must specify an absolute path but is

    下面是一张模块与子模块的目录图  kingdeekingdee-bizpom.xml依赖本地lib/k3cloud-webapi-sdk8.0.4.jar,配置如下: pom.xml报错提示: \\\'dependencies.dependency.systemPath\\\' for kingdee:kingdee:jar must specify an absolute path but is ${project.parent.basedir}/lib/k3cloud-webapi-sdk8.0.4.jar 意思是说:systemPath 只认识绝对路径

    2024年02月08日
    浏览(40)
  • Understanding Dependency Injection for angular

    Angular https://angular.io/guide/dependency-injection Denpendency Injection,  or DI, is one of fundamental concepts for angular, DI is writed by angular framework and allows classes with  Angular decorators,  such as Components, directives, Piples and Injectables , to configure dependencies that they need.  Two main roles exists in DI system: dependency

    2024年02月10日
    浏览(34)
  • Could not resolve dependencies for project

    maven 打包Could not resolve dependencies for project和无效的目标发行版: 1.8 1.maven 打包Could not resolve dependencies for project 最近项目上使用的是idea ide的多模块话,需要模块之间的依赖,比如说系统管理模块依赖授权模块进行认证和授权,而认证授权模块需要依赖系统管理模块进行,然后

    2024年02月08日
    浏览(62)
  • [ERROR][com.alibaba.druid.pool.DruidDataSource][run][2699]-> create connection SQLException

    在配置java后端时,会发现连接不上数据库。 首先查看数据库是否开启,Navicat forMySQL是否可以打开数据库,查看数据表格 其次我检查了电脑本地的数据库版本和项目版本是否一致。 (在打包好的lib目录中查看)   然后在检查的数据库连接的配置设置,例如数据库是名称、密

    2024年02月06日
    浏览(74)
  • Angular(二) Understanding Dependency Injection for angular

    Angular https://angular.io/guide/dependency-injection Denpendency Injection,  or DI, is one of fundamental concepts for angular, DI is writed by angular framework and allows classes with  Angular decorators,  such as Components, directives, Piples and Injectables , to configure dependencies that they need.  Two main roles exists in DI system: dependency

    2024年02月09日
    浏览(38)
  • 【Android编译报错:missing dependencies】

    最近在工作中,我遇到了一个编译问题,报错是这样的: missing dependencies : 看报错的意思是缺失依赖库 于是我在Android.bp中已经添加了所需要的依赖库,但是还是报这个错。 最后才查到原因:模块是用 Android.mk 构建编译的,而我编译的测试模块是 Android.bp 构建的 知道了原因,

    2024年02月06日
    浏览(35)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包