jarhoo是一个很棒的地方

news/2024/7/6 1:11:08
jarhoo是一个很棒的根据类名找jar包的地方, jarhoo 。
在写程序的时候,我反正是经常遇到某一个类声明不知道是哪一个jar包的,比如某一个开源包报告了
java.lang.NoClassDefFoundError: javax/servlet/http/HttpSessionListener
错误,搞得满世界找。
有了jarhoo好点,它声称“Searches for jar files or fully qualified java classnames usually performed under 2 seconds. Package or non-qualified classname searches may take around 10 seconds ”,只要你将javax.servlet.http.HttpSessionListener输入搜索框,他就会帮你找到各种各样的jar包,如:
The results for the Java classname of javax.servlet.http.HttpSessionListener are:

Class NameJar File NameApplication Name
javax.servlet.http.HttpSessionListenergeronimo-spec-servlet-2.4-rc4.jarIbiblio Maven Repository
javax.servlet.http.HttpSessionListenergeronimo-spec-j2ee-1.4-rc3.jarIbiblio Maven Repository
javax.servlet.http.HttpSessionListenerservletapi-2.4.public_draft.jarIbiblio Maven Repository
javax.servlet.http.HttpSessionListenerservlet.jarAcegi Security 0.6 for Spring Framework (with dependencies)
javax.servlet.http.HttpSessionListenerservlet.jarEclipse SDK 3.0.1
javax.servlet.http.HttpSessionListenerservlet.jarJBoss 3.2.5
javax.servlet.http.HttpSessionListenerservlet.jarJBuilder 2005 Enterprise
javax.servlet.http.HttpSessionListenerservlet.jarSpring Framework 1.1 (With Dependencies)
javax.servlet.http.HttpSessionListenerservlet.jarWebWork 2.1.6
javax.servlet.http.HttpSessionListenerservlet.jarXOM 1.0b6
javax.servlet.http.HttpSessionListenerservlet-api-2.3.jarIbiblio Maven Repository
javax.servlet.http.HttpSessionListenerservletapi-2.4-20030804.000000.jarIbiblio Maven Repository
javax.servlet.http.HttpSessionListenergeronimo-spec-servlet-2.4-rc2.jarIbiblio Maven Repository
javax.servlet.http.HttpSessionListenerj2ee.jarJ2EE 1.4 SDK and Sun Java System Application Server Platform Edition 8 Update 1
javax.servlet.http.HttpSessionListenerj2ee.jarWebsphere Application Server v5.1 Trial
javax.servlet.http.HttpSessionListenerservletapi-2.4-20040521.jarIbiblio Maven Repository
javax.servlet.http.HttpSessionListenergeronimo-spec-j2ee-1.0-M1.jarIbiblio Maven Repository
javax.servlet.http.HttpSessionListenergeronimo-spec-servlet-2.4-rc3.jarIbiblio Maven Repository
javax.servlet.http.HttpSessionListenerservlet-api.jarJBoss 3.2.5




http://www.niftyadmin.cn/n/3649584.html

相关文章

服务周期性工作内容_使服务工作者生命周期神秘化

服务周期性工作内容介绍 (Introduction) Service workers play a very vital role in Progressive Web Apps (PWA), as they are responsible for offline caching, push notifications, background sync etc. In this article, we’ll be demystifying the service worker lif…

Adobe Dreamweaver CC 2019 安装教程

一、DW简介 Adobe Dreamweaver,简称“DW”,中文名称 “梦想编织者”,最初为美国MACROMEDIA公司开发 ,2005年被Adobe公司收购。DW是集网页制作和管理网站于一身的所见即所得网页代码编辑器。利用对 HTML、CSS、JavaScript等内容的…

Json的知识点全解析,解析json数据的好工具大全

一、Json知识点 待续。。。。。。 二、Json解析工具 1、fastjson网址:http://fastjson.codeplex.com/ 教程博客:fastjson教程(http://blog.sina.com.cn/s/blog_7ffb8dd501013qas.html)2、网站:bejson网址:h…

CentOS系统:自动化运维工具Ansible的安装与配置

一、Ansible工具简介 ansible是新出现的自动化运维工具,基于Python开发,集合了众多运维工具(puppet、cfengine、chef、func、fabric)的优点,实现了批量系统配置、批量程序部署、批量运行命令等功能。 二、Ansible的安…

flutter 状态管理_管理Flutter中的状态

flutter 状态管理Most non-trivial apps will have some sort of state change going on and over time managing that complexity becomes increasingly difficult. Flutter apps are no different, but luckily for us, the Provider package is a perfect solution for most…

我的“普鲁斯特问卷”

普鲁斯特因著作《追忆逝水年华》而闻名,当他十三岁及二十岁时,分别回答过一份涉及被提问者的生活、思想、价值观及人生经验的问卷,而这份问卷亦因为他特别的答案而受到世人的关注,后人还将这份问卷命名为“Proust Questionnaire&a…

华为认证HCIA-Kunpeng Application Developer单选习题总结

最近参加了华为HCIA-Kunpeng Application Developer的认证考试。所以分享一下在培训和备考过程中做的一些习题。 ▣ 考试总共90分钟,有60个题。分别有单选、多选和判断。总分1000分,600分过。 单选练习题 1.TaiShan服务器支持哪个中标麒麟版本&#xf…

Activity 详解(一)

activity类处于android.app包中,继承体系如下: 1.java.lang.Object 2.android.content.Context 3.android.app.ApplicationContext 4.android.app.Activity activity是单独的,用于处理用户操作。几乎所有的activity都要和用户打交道&#xff…