当前位置: 代码迷 >> .NET Framework >> 在Eclipse中怎么关联spring-framework的文档和源代码
  详细解决方案

在Eclipse中怎么关联spring-framework的文档和源代码

热度:138   发布时间:2016-05-01 23:25:29.0
在Eclipse中如何关联spring-framework的文档和源代码

1.到官方网站去下载spring-framework的jar包

spring-framework jar包的下载地址是:http://repo.spring.io/release/org/springframework/spring/

?

2.创建新的User Library

Window->Pereferences->Java->Build Path->User Libraries。单击“new",新建一个新的User?Library,命令为“spring-framework-4.1.5”,然后Add External JARs等等。

?

3.将新建的Library引入到项目中

右键项目->Build Path->Add Libraries->User Library->选中之前新建的"spring-framework-4.1.5"。

?

4.关联docs文档和src源代码【这一步一定要选中正确的jar包和正确的目录下的doc或者src匹配】

解压下载的spring-framework-4.1.5.RELEASE-dist.zip发现在spring-framework-4.1.5.RELEASE\libs\目录下面,每一个jar包都对应一个javadoc.jar和一个sources.jar。所以如果在使用到某个jar中的类需要查看查看该类的源代码或者docs文档时,直接选择对应的javadoc.jar和sources.jar就行了。具体如下:

?

比如在代码中使用到org.springframework.beans.factory.BeanFactory这个接口了。根据包名知道这个接口在spring-beans-4.1.5.RELEASE.jar中。

?

(1)关联docs

右键选中项目下的spring-beans-4.1.5.RELEASE.jar包,然后->Properties->Javadoc Location,选中spring解压后的在spring-framework-4.1.5.RELEASE\libs\下的spring-beans-4.1.5.RELEASE-javadoc.jar,确定。

?

(2)关联src

右键选中项目下的spring-beans-4.1.5.RELEASE.jar包,然后->Properties->Javadoc Source?Attachment,选中spring解压后的在spring-framework-4.1.5.RELEASE\libs\下的spring-beans-4.1.5.RELEASE-sources.jar,确定。

?

5.查看某个类的API

选中某个类,按下F1。或者使用快捷键"Shift+F2"。

?

  相关解决方案