找出消失的已引入的类库

这篇具有很好参考价值的文章主要介绍了找出消失的已引入的类库。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

最近使用软件加密的时候用到了一个密码库,顺手从Maven Repository上,把对应的坐标给粘贴下来,引入后,项目也更新了。但是发现用不了对应的库里面的函数。
对应的Maven Repository的坐标信息如下。

<!-- https://mvnrepository.com/artifact/com.tencent.kona/kona-crypto -->
<dependency>
    <groupId>com.tencent.kona</groupId>
    <artifactId>kona-crypto</artifactId>
    <version>1.0.11</version>
    <scope>runtime</scope>
</dependency>
  1. 一开始的时候,以为是类库没有下载成功。去到本地路径,找了下,地区是在的也是完整的。
  2. 然后删除类库,重新下载,重新导入项目。发现还是没法引用到对应的项目。
  3. 最后用了最原始的办法,重新新建了一个项目,把对应的包直接手工放到项目路径,居然发现可以了。
  4. 因为想到这个方法可行,就想了下两个项目的差异点,一个是maven 项目,一个是普通的项目。唯一的差异点就是POM文件。
  5. 然后打开POM文件,发现就只有这个类库的scope 是 runtime导致,项目没法引入对应的类和方法。
  6. 去掉scope后使用默认的范围,问题修复。

重新看了下官网对scope范围的定义:

Dependency Scope

Dependency scope is used to limit the transitivity of a dependency and to determine when a dependency is included in a classpath.

There are 6 scopes:

  • compile
    This is the default scope, used if none is specified. Compile dependencies are available in all classpaths of a project. Furthermore, those dependencies are propagated to dependent projects.

  • provided
    This is much like compile, but indicates you expect the JDK or a container to provide the dependency at runtime. For example, when building a web application for the Java Enterprise Edition, you would set the dependency on the Servlet API and related Java EE APIs to scope provided because the web container provides those classes. A dependency with this scope is added to the classpath used for compilation and test, but not the runtime classpath. It is not transitive.

  • runtime
    This scope indicates that the dependency is not required for compilation, but is for execution. Maven includes a dependency with this scope in the runtime and test classpaths, but not the compile classpath.

  • test
    This scope indicates that the dependency is not required for normal use of the application, and is only available for the test compilation and execution phases. This scope is not transitive. Typically this scope is used for test libraries such as JUnit and Mockito. It is also used for non-test libraries such as Apache Commons IO if those libraries are used in unit tests (src/test/java) but not in the model code (src/main/java).

  • system
    This scope is similar to provided except that you have to provide the JAR which contains it explicitly. The artifact is always available and is not looked up in a repository.

  • import
    This scope is only supported on a dependency of type pom in the section. It indicates the dependency is to be replaced with the effective list of dependencies in the specified POM's section. Since they are replaced, dependencies with a scope of import do not actually participate in limiting the transitivity of a dependency.

Each of the scopes (except for import) affects transitive dependencies in different ways, as is demonstrated in the table below. If a dependency is set to the scope in the left column, a transitive dependency of that dependency with the scope across the top row results in a dependency in the main project with the scope listed at the intersection. If no scope is listed, it means the dependency is omitted.文章来源地址https://www.toymoban.com/news/detail-839404.html

compile provided runtime test
compile compile(*) - runtime -
provided provided - provided -
runtime runtime - runtime -
test test - test -

到了这里,关于找出消失的已引入的类库的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

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

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

相关文章

  • 发布 VectorTraits v1.0,它是 C# 下增强SIMD向量运算的类库

    VectorTraits: SIMD Vector type traits methods (SIMD向量类型的特征方法). NuGet: https://www.nuget.org/packages/VectorTraits/1.0.0 源代码: https://github.com/zyl910/VectorTraits 总所周知,使用SIMD指令集,能够加速 多媒体处理(图形、图像、音频、视频...)、人工智能、科学计算 等。 然而,传统的SIMD编程存

    2024年02月09日
    浏览(39)
  • 【Turfjs的java版本JTS】前面讲了Turfjs可以实现几何计算,空间计算的功能,如果后端要做这项功能也有类似的类库,JTS

    JTS = Java Topology Suite 几何计算: 1. 前端js就用这个 Turfjs的类库。参考网站: 计算两线段相交点 | Turf.js中文网 2. 后端java语言就可以用 JTS这个类库,参考网站:  JTS参考网站: 1. https://github.com/locationtech/jts GitHub - locationtech/jts: The JTS Topology Suite is a Java library for creating and m

    2024年02月09日
    浏览(35)
  • 加密解密软件VMProtect入门使用教程(一):软件及专业术语介绍

    VMProtect 是新一代软件保护实用程序。VMProtect支持德尔菲、Borland C Builder、Visual C/C++、Visual Basic(本机)、Virtual Pascal和XCode编译器。 同时,VMProtect有一个内置的反汇编程序,可以与Windows和Mac OS X可执行文件一起使用,并且还可以链接编译器创建的MAP文件,以快速选择要保护的

    2024年02月04日
    浏览(63)
  • 【完美解决】无线网卡、以太网驱动消失,“没网络”并且重新下载驱动仍然出现感叹号(windows仍在设置此设备的类配置,代码56)解决方法,绝对绝对有效

    最近在玩以前的单机游戏,虐杀原形2,在一个全球做单机游戏的网站购买下载的,自带了作弊器,但是觉得没意思,于是想把作弊器恢复掉,误以为它里面的注册表恢复是恢复外挂的,结果就导致了一系列的问题。 完全没想到,一个注册表恢复让我的以太网驱动以及无线网

    2024年02月09日
    浏览(62)
  • 信息安全技术—实验三—PGP邮件加密软件的使用

    一、实验目的及要求         1.熟悉公开密钥密码体制,了解证书的基本原理,熟悉数字签名;         2.熟练使用PGP的基本操作,能对邮件或传输文档进行加密; 二、实验内容         1创建一私钥和公钥对         使用PGPtray之前,需要用PGPkeys生成一对密钥,

    2024年02月06日
    浏览(56)
  • 加密解密软件VMProtect教程(四):准备项目之使用标记

    VMProtect 是保护应用程序代码免遭分析和破解的可靠工具,但只有在正确构建应用程序内保护机制并且没有可能破坏整个保护的典型错误的情况下才能最有效地使用。 为了保护代码的各个片段和字符串常量,您可以在应用程序的源代码中插入特殊标记。标记是对从外部库导入

    2024年02月05日
    浏览(59)
  • 计算机系统安全 实验二 PGP加密软件的安装和使用

    目录 实验目的 实验内容及步骤 一、PGP的安装及汉化 二、创建用户及密钥 三、使用PGPkeys加密文件内容 四、邮件内容加解密 五、使用PGP对文件进行粉碎 实验感想 1.了解加密工具PGP 的原理 2.熟悉PGP 简单配置方法 选择默认语言English   选择安装协议 I accept the license agreement  

    2024年02月07日
    浏览(45)
  • Vue实现leafletMap自定义绘制线段 并且删除指定的已绘制的点位

     效果:点击表格可实现选中地图点位,删除按钮点击可删除对应点位并且重新绘制线段,点击确定按钮 保存已经绘制的点位信息传给父组件 并且该组件已实现回显     完整的组件代码如下  文件名称为:

    2024年02月14日
    浏览(37)
  • 怎么安全加密文件?文件加密软件哪个安全?

    文件加密可以有效地保护个人信息和企业数据安全,避免数据泄露。那么,我们要怎么安全加密文件呢? 安全 文件加密最基本,也是最重要的要求就是安全,这是避免数据泄露的前提。如果无法保障安全,那么文件加密也就没有了意义。 易用 文件加密不仅要操作简单,而且

    2024年02月07日
    浏览(41)
  • 基于C#的软件加密、授权与注册

      本文介绍了基于 本机特征信息(如CPU、主板、BIOS和MAC等) 的软件加密、授权与注册方法,并分享了 示例程序完整源代码 。   软件的加密、授权与注册流程如下:   本机特征信息主要包括: ①CPU信息、②主板序列号、③BIOS信息、④MAC地址 ,基于C#获取代码如下:

    2023年04月08日
    浏览(35)

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

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

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

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

二维码1

领取红包

二维码2

领红包