English 中文(简体)
Is there a central javadoc repository online?
原标题:
  • 时间:2009-11-13 15:49:43
  •  标签:
  • java
  • javadoc

I found some sample code that uses an interface named com.sun.jersey.spi.container.ContainerRequestFilter. Someone was nice enough to post the javadoc here, but it just looks like it was some university professor who also couldn t find the javadocs. I know I can build it myself, but would rather not go through the work. Is there a central place to get javadocs like these?

I looked here and here the first was closed the second was just a fancy google search.

最佳回答

Jarvana Javadoc

EDIT:
As you might notice all the examples pointed out by you and others sites mentioned in answers don t do theirs job because it s hard to find all new api and track all api changes and present it in reasonable manner (plethora of versions). Even dzone.com child jdocs.com serves javadoc for out of date versions. Jarvana as a Maven focused search engine offers a great solution to find appropriate javadoc if it deployed to Maven repositories. We as developers have to influence library creators to deploy their software to Maven repositories with javadoc generated and support creator of Jarvana :)

问题回答

Seems http://www.jarvana.com/jarvana/doc is currently down. You can try to use JavaDoc.io:

http://www.javadoc.io/doc/$org/$artifact/$version

For example. Spring-aop version 4.0.5.RELEASE

http://www.javadoc.io/doc/org.springframework/spring-aop/4.0.5.RELEASE

But the limitation is it only hosts JavaDocs for Open Source project released to central maven repository.

I m aware this is a very old question, but sometimes old questions warrant new answers.

http://www.javadoc.io/

Free javadoc hosting for any open source Central Maven Repository project.

This looks like it: https://jersey.dev.java.net/nonav/apidocs/latest/jersey/index.html

Did a google search for sun jersey .

JDocs contains lots of libraries. It even used to contain the JDK JavaDoc as well but Sun made them remove it!

There s the maven central repo. It has javadocs to go with many, but by no means all, of the libraries it hosts. That isn t something you can just browse to, you can only download the javadoc in jars.





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签