I need to know ApplicationContext belongs to which JAR meanwhile its maven gav(I want it in some spring jar). Is there any generalized way of searching Jar to which a particular class belongs to. I find http://www.findjar.com can search the jar but not the maven gav, what about http://www.findmaven.net?
Asked
Active
Viewed 1,112 times
1 Answers
1
You can use the AdvancedSearch on http://search.maven.org/
For a class name like ApplicationContext, you'll get many results, so you might want to limit your query by groupId. For example, you could search for: g:org.springframework c:ApplicationContext

Martin Ellis
- 9,603
- 42
- 53