简体   繁体   English

在哪里可以找到Spring导入的第三方jar代码

[英]Where to find the third-party jars imported by spring source code

When I was reading the spring source code( version 5.0 ), I found it imports some third-party jars. 当我阅读spring源代码( 版本5.0 )时,我发现它导入了一些第三方jar。 But I found no pom file in the package downloaded from github. 但是我发现从github下载的包中没有pom文件。 So where to find those jars, such as rx.RxReactiveStreams imported by org.springframework.core.ReactiveAdapterRegistry ? 那么在哪里可以找到这些jar,例如由org.springframework.core.ReactiveAdapterRegistry导入的rx.RxReactiveStreams

If you're trying to find the source of some class that's available in the general Java ecosystem, you can go to the Central Repository and search there. 如果您要查找通用Java生态系统中可用的某些类的源代码,则可以转到中央存储库并在其中进行搜索。 The fc: option allows you to search by "full class name", and searching fc:rx.RxReactiveStreams provides some good candidates, particularly io-reactivex:rxjava-reactive-streams . fc:选项允许您按“全类名”进行搜索,并且搜索fc:rx.RxReactiveStreams提供了一些不错的候选对象,尤其是io-reactivex:rxjava-reactive-streams

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 从Eclipse中的第三方jar查看源代码 - Viewing source code from a third-party jar in Eclipse 如何使用配置类中的第三方实现来管理JAR? - How to manage JARs with third-party implementations in configuration classes? 使用Gradle将所有创建的和第三方jar复制到一个文件夹中 - Copy all created & third-party jars into a single folder with Gradle 如何杀死从第三方库导入的线程? - How to kill a thread imported from third-party lib? 无法查看导入的jar的源代码 - Not able to view the source code for Imported jars Maven 在构建我们自己的 custom.jar 时发布和使用第三方运行时 jar - Maven publish & consume the third-party runtime jars while building our own custom.jar 如何防止classpath上的第三方JAR覆盖我的类依赖关系? - How to prevent third-party JARs on the classpath from overriding my class dependencies? Java - 如何减小第三方jar的大小以减小应用程序的大小 - Java - How to reduce the size of third-party jars to reduce the size of your application 如何报告JVM中的所有异常,无论是自己的代码还是第三方代码? - How to report all exceptions in JVM, be it own or third-party code? 我应该在哪里存储要包含在IntelliJ IDEA项目中的第三方库? - Where should I store third-party libraries for inclusion in IntelliJ IDEA projects?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM