在Eclipse或MyEclipse中安装findbugs插件

咱们都知道,在Eclipse或MyEclipse中安装插件有两种方式,一种是在线安装,第二种是先下载插件而后在本地安装。html

在这里咱们先介绍第一种在线安装。git

 

Eclipse上在线安装findbugs(具体步骤以下,就再也不赘述)app

 

 

In Eclipse, click on Help -> Software Update -> Find and Install...eclipse

Choose the Search for new features to install option, and click Next .网站

Click New Remote Site .ui

Enter the following:url

Name: FindBugs update sitespa

URL: one of the following (note: no final slash on the url).net

http://findbugs.cs.umd.edu/eclipse for official releases插件

http://findbugs.cs.umd.edu/eclipse-candidate for candidate releases and official releases

http://findbugs.cs.umd.edu/eclipse-daily for all releases, including developmental ones and click OK .

"FindBugs update site" should appear under Sites to include in search . 

Click the checkbox next to it to select it, and click Finish .

You should see FindBugs Feature under Select features to install . 

(You may have to click on one or two triangles to make it visible in the tree.)

Select the checkbox next to it and click next.

Select the I accept option to accept the license and click Next .

Make sure the location is correct where you're installing it. The default (your workspace) should be fine. Click Finish .

The plugin is not digitally signed. Go ahead and install it anyway.

Click Yes to make Eclipse restart itself.

 

可是咱们使用MyEclipse时,通常都是使用的破解版,因此不少插件都没法在线安装,只能先下载而后再安装。

这里咱们介绍第二种方法

 

MyEclipse8.5 和 Eclipse中安装findbugs插件


一、首先从findbugs网站下载插件:http://findbugs.sourceforge.net/downloads.html 


二、将下载回来的zip包解压,findbugs插件和通常的插件不太同样,通常的插件安装包解压后里面通常是包含plugins和 features两个文件夹,咱们只须要把这两个文件夹下的jar包或文件夹拷贝到Eclipse或MyEclipse安装路径下对应的plugins和 features文件夹中就OK了。可是findbugs插件压缩包解压后获得文件 夹:edu.umd.cs.findbugs.plugin.eclipse_1.3.9.20090821 ,将该文件夹拷贝到myeclipse和Eclipse安装目录下plugins目录下。

个人目录结构:

Eclipse:D:\Program Files\eclipse4ee\plugins\edu.umd.cs.findbugs.plugin.eclipse_1.3.9.20090821

MyEclipse:D:\Program Files\Genuitec\Common\plugins\edu.umd.cs.findbugs.plugin.eclipse_1.3.9.20090821


三、修改myeclipse和Eclipse安装目录下configuration/org.eclipse.equinox.simpleconfigurator的bundles.info文件,在文件最后添加一行:

Eclipse:edu.umd.cs.findbugs.plugin.eclipse,1.3.9.20090821,plugins/edu.umd.cs.findbugs.plugin.eclipse_1.3.9.20090821/,4,false

MyEclipse: edu.umd.cs.findbugs.plugin.eclipse,1.3.9.20090821,file:/D:/Program Files/Genuitec/Common/plugins/edu.umd.cs.findbugs.plugin.eclipse_1.3.9.20090821/,4,false

注:bundles.info文件中添加的格式为     插件包名 , 插件版本号 , 插件安装路径 , 4 , false

如上findbugs插件:

edu.umd.cs.findbugs.plugin.eclipse:插件的压缩包名

1.3.9.20090821:该插件的版本号

plugins/edu.umd.cs.findbugs.plugin.eclipse_1.3.9.20090821/ :该插件的安装路径,若是插件是一个jar包,则不要最后的/,

例如plugins/org.uddi4j_2.0.5.v200805270300.jar,4,false

,4,false:固定格式


四、重启myeclipse和Eclipse,选中项目,右键会出现一个Find Bugs菜单。至此,findbugs插件安装完毕。

相关文章
相关标签/搜索