﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>BlogJava-Timnity的笔记-随笔分类-Tools</title><link>http://www.blogjava.net/Timnity/category/6492.html</link><description /><language>zh-cn</language><lastBuildDate>Fri, 02 Mar 2007 23:17:00 GMT</lastBuildDate><pubDate>Fri, 02 Mar 2007 23:17:00 GMT</pubDate><ttl>60</ttl><item><title>Eclipse 插件开发中出现的问题</title><link>http://www.blogjava.net/Timnity/archive/2005/12/29/25952.html</link><dc:creator>Timnity</dc:creator><author>Timnity</author><pubDate>Thu, 29 Dec 2005 13:50:00 GMT</pubDate><guid>http://www.blogjava.net/Timnity/archive/2005/12/29/25952.html</guid><wfw:comment>http://www.blogjava.net/Timnity/comments/25952.html</wfw:comment><comments>http://www.blogjava.net/Timnity/archive/2005/12/29/25952.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/Timnity/comments/commentRss/25952.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/Timnity/services/trackbacks/25952.html</trackback:ping><description><![CDATA[<P>今天在看《Eclipse由入门到精通》此书时，第18章创建一个透视图扩展点。照着例子做出透视图的扩展点，plugin.xml文件也写好,可是Eclipse报告了一个错误:声明扩展或扩展点的插件必须将"singleton"伪指令设置为"true"。位置在manifest.mf文件"Bundle-SymbolicName: myplugin"这一条上。接着查看了Eclipse插件的源代码，如：<FONT face=新宋体>org.eclipse.jdt.core 。发现在它的manifest.mf文件是这么写的"Bundle-SymbolicName: org.eclipse.jdt.core; singleton:=true"</FONT></P>
<P><FONT face=新宋体>将singleton:=true加入我的代码中问题就解决了.</FONT></P>
<P><FONT face=新宋体>可是由于我没有看清代码,输入的是singleton=true.出现了一个新的问题:"建议不要使用属性"singleton".改为使用"singleton:=true"或"singleton:=false"伪指令.问题是解决了,可是在这里Eclipse中出现的伪指令,却让我很好奇.查找了一些资料,没有找到好的解释,如有哪位高手,望不吝赐教,谢谢:)<BR></P></FONT><img src ="http://www.blogjava.net/Timnity/aggbug/25952.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/Timnity/" target="_blank">Timnity</a> 2005-12-29 21:50 <a href="http://www.blogjava.net/Timnity/archive/2005/12/29/25952.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Eclipse的link安装&amp;Tutor </title><link>http://www.blogjava.net/Timnity/archive/2005/12/29/25950.html</link><dc:creator>Timnity</dc:creator><author>Timnity</author><pubDate>Thu, 29 Dec 2005 13:49:00 GMT</pubDate><guid>http://www.blogjava.net/Timnity/archive/2005/12/29/25950.html</guid><wfw:comment>http://www.blogjava.net/Timnity/comments/25950.html</wfw:comment><comments>http://www.blogjava.net/Timnity/archive/2005/12/29/25950.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/Timnity/comments/commentRss/25950.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/Timnity/services/trackbacks/25950.html</trackback:ping><description><![CDATA[<DIV class=postText>
<P>一、使用links方式安装eclipse插件</P>
<P>假设eclipse安装目录是D:\eclipse，待安装插件目录是D:\ eclipseplugins。以lomboz，Sysdeo Eclipse Tomcat Launcher plugin和xmlbuddy为例说明如何使用links方式安装eclipse插件。</P>
<P>1、安装Lomboz</P>
<P>在D:\eclipseplugins中建立如下的目录结构：</P>
<P>D:\eclipseplugins\lomboz\eclipse</P>
<P>将lomboz安装文件解压到此目录中，这个目录将包含一个plugins目录，即目录结构是这样的：</P>
<P>D:\eclipseplugins\lomboz\eclipse\plugins</P>
<P>在D:\eclipse\links目录下新建文件，命名为lomboz.link，编辑此文件，加入如下内容并保存。</P>
<P>path = D:/eclipseplugins/lomboz</P><BR>…… </DIV>
<DIV class=postText>&nbsp;</DIV>
<DIV class=postText>几个网址：</DIV>
<DIV class=postText>WTP操作演示：</DIV>
<DIV class=postText><A href="http://www.eclipse.org/org/june05release/screencasts/6-webtoolsBuildingWebApp/webtoolsBuildingWebApp.html">http://www.eclipse.org/org/june05release/screencasts/6-webtoolsBuildingWebApp/webtoolsBuildingWebApp.html</A></DIV>
<DIV class=postText>WTP教程：</DIV>
<DIV class=postText><A href="http://www.eclipse.org/webtools/community/tutorials/DevelopingWTP/DevelopingWTP.html">http://www.eclipse.org/webtools/community/tutorials/DevelopingWTP/DevelopingWTP.html</A></DIV>
<DIV class=postText>不错的教材（E）：</DIV>
<DIV class=postText><A href="http://www.bogor.net/idkf/bio2/tutorial/eclipse-tutor/">http://www.bogor.net/idkf/bio2/tutorial/eclipse-tutor/</A></DIV><img src ="http://www.blogjava.net/Timnity/aggbug/25950.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/Timnity/" target="_blank">Timnity</a> 2005-12-29 21:49 <a href="http://www.blogjava.net/Timnity/archive/2005/12/29/25950.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>常用Ｅｃｌｉｐｓｅ插件下载地址</title><link>http://www.blogjava.net/Timnity/archive/2005/12/29/25948.html</link><dc:creator>Timnity</dc:creator><author>Timnity</author><pubDate>Thu, 29 Dec 2005 13:48:00 GMT</pubDate><guid>http://www.blogjava.net/Timnity/archive/2005/12/29/25948.html</guid><wfw:comment>http://www.blogjava.net/Timnity/comments/25948.html</wfw:comment><comments>http://www.blogjava.net/Timnity/archive/2005/12/29/25948.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/Timnity/comments/commentRss/25948.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/Timnity/services/trackbacks/25948.html</trackback:ping><description><![CDATA[<TABLE cellSpacing=0 cellPadding=0 width="100%" align=center border=0>
<TBODY>
<TR bgColor=#ffffff>
<TD height=0><SPAN id=c_28229>
<DIV>2.Properties Editor&nbsp; 编辑java的属性文件，并可以自动存盘为Unicode格式<BR><A href="http://propedit.sourceforge.jp/index_en.html">http://propedit.sourceforge.jp/index_en.html</A></DIV>
<DIV>&nbsp;</DIV>
<DIV>3.Colorer Take&nbsp; 为上百种类型的文件按语法着色<BR><A href="http://colorer.sourceforge.net/">http://colorer.sourceforge.net/</A></DIV>
<DIV>&nbsp;</DIV>
<DIV>4.XMLBuddy 编辑xml文件<BR><A href="http://www.xmlbuddy.com/">www.xmlbuddy.com</A></DIV>
<DIV>&nbsp;</DIV>
<DIV>5.Code Folding&nbsp; 加入多种代码折叠功能（比eclipse自带的更多）<BR><A href="http://www.coffee-bytes.com/servlet/PlatformSupport">http://www.coffee-bytes.com/servlet/PlatformSupport</A></DIV>
<DIV>&nbsp;</DIV>
<DIV>6.Easy Explorer&nbsp; 从eclipse中访问选定文件、目录所在的文件夹<BR><A href="http://easystruts.sourceforge.net/">http://easystruts.sourceforge.net/</A></DIV>
<DIV>&nbsp;</DIV>
<DIV>7.Fat Jar 打包插件，可以方便的完成各种打包任务，可以包含外部的包等<BR><A href="http://fjep.sourceforge.net/">http://fjep.sourceforge.net/</A></DIV>
<DIV>&nbsp;</DIV>
<DIV>8.RegEx Test 测试正则表达式<BR><A href="http://brosinski.com/stephan/archives/000028.php">http://brosinski.com/stephan/archives/000028.php</A></DIV>
<DIV>&nbsp;</DIV>
<DIV>9.JasperAssistant 报表插件（强，要钱的）<BR><A href="http://www.jasperassistant.com/">http://www.jasperassistant.com/</A></DIV>
<DIV>&nbsp;</DIV>
<DIV>10.Jigloo GUI Builder ＪＡＶＡ的ＧＵＩ编辑插件<BR><A href="http://cloudgarden.com/jigloo/">http://cloudgarden.com/jigloo/</A></DIV>
<DIV>&nbsp;</DIV>
<DIV>11.Profiler 性能跟踪、测量工具，能跟踪、测量ＢＳ程序<BR><A href="http://sourceforge.net/projects/eclipsecolorer/">http://sourceforge.net/projects/eclipsecolorer/</A></DIV>
<DIV>&nbsp;</DIV>
<DIV>12.AdvanQas 提供对if/else等条件语句的提示和快捷帮助（自动更改结构等）<BR><A href="http://eclipsecolorer.sourceforge.net/advanqas/index.html">http://eclipsecolorer.sourceforge.net/advanqas/index.html</A></DIV>
<DIV>&nbsp;</DIV>
<DIV>13.Log4j&nbsp;&nbsp;&nbsp;&nbsp; Log4j插件，提供各种和Log4j相关的任务，如为方法、类添加一个logger等<BR><A href="http://log4e.jayefem.de/index.php/Main_Page">http://log4e.jayefem.de/index.php/Main_Page</A></DIV>
<DIV>&nbsp;</DIV>
<DIV>14.VSSPlugin VSS插件<BR><A href="http://sourceforge.net/projects/vssplugin">http://sourceforge.net/projects/vssplugin</A></DIV>
<DIV>&nbsp;</DIV>
<DIV>15.Implementors&nbsp;&nbsp; 提供跳转到一个方法的实现类，而不是接中的功能（实用!）<BR><A href="http://eclipse-tools.sourceforge.net/implementors/">http://eclipse-tools.sourceforge.net/implementors/</A></DIV>
<DIV>&nbsp;</DIV>
<DIV>16.Call Hierarchy 显示一个方法的调用层次（被哪些方法调，调了哪些方法）<BR><A href="http://eclipse-tools.sourceforge.net/call-hierarchy/index.html">http://eclipse-tools.sourceforge.net/call-hierarchy/index.html</A></DIV>
<DIV>&nbsp;</DIV>
<DIV>17.EclipseTidy 检查和格式化HTML/XML文件<BR><A href="http://eclipsetidy.sourceforge.net/">http://eclipsetidy.sourceforge.net/</A></DIV>
<DIV>&nbsp;</DIV>
<DIV>18.Checkclipse 检查代码的风格、写法是否符合规范<BR><A href="http://www.mvmsoft.de/content/plugins/checkclipse/checkclipse.htm">http://www.mvmsoft.de/content/plugins/checkclipse/checkclipse.htm</A></DIV>
<DIV>&nbsp;</DIV>
<DIV>19.Hibernate Synchronizer Hibernate插件，自动映射等<BR><A href="http://www.binamics.com/hibernatesync/">http://www.binamics.com/hibernatesync/</A></DIV>
<DIV>&nbsp;</DIV>
<DIV>20.VeloEclipse&nbsp; Velocity插件<BR><A href="http://propsorter.sourceforge.net/">http://propsorter.sourceforge.net/</A></DIV>
<DIV>&nbsp;</DIV>
<DIV>21.EditorList&nbsp;&nbsp; 方便的列出所有打开的Editor<BR><A href="http://editorlist.sourceforge.net/">http://editorlist.sourceforge.net/</A></DIV>
<DIV>&nbsp;</DIV>
<DIV>22.MemoryManager 内存占用率的监视<BR><A href="http://cloudgarden.com/memorymanager/">http://cloudgarden.com/memorymanager/</A><BR><BR>补充：<BR>1. Easy Struts支持Struts的插件 (0.64版只支持Eclipse2.X)<BR>是开放源代码组织sourceforge.net上的一个项目，目前最新的版本是0.64，<BR><BR>http://sourceforge.net/project/showfiles.php？group_id=54542&amp;package_id=49230<BR>http://easystruts.sourceforge.net/ <BR><BR>2.TomcatPlugin 支持Tomcat插件<BR>http://www.sysdeo.com/eclipse/tomcatPlugin.html<BR></DIV></SPAN></TD></TR></TBODY></TABLE>&nbsp;&nbsp;<A href="http://www.sysdeo.com/eclipse/tomcatPlugin.html" target=_blank><FONT color=#0000cc>http://www.sysdeo.com/eclipse/tomcatPlugin.html</FONT></A>&nbsp;&nbsp;Tomcat 插件<BR>&nbsp;&nbsp;<A href="http://www.objectlearn.com/index.jsp" target=_blank><FONT color=#0000cc>http://www.objectlearn.com/index.jsp</FONT></A>&nbsp;&nbsp;Lomboz 插件<BR>&nbsp;&nbsp;<A href="http://sourceforge.net/projects/easystruts" target=_blank><FONT color=#0000cc>http://sourceforge.net/projects/easystruts</FONT></A>&nbsp;&nbsp;EasyStruts 插件<BR>&nbsp;&nbsp;<A href="http://www.binamics.com/hibernatesync/" target=_blank><FONT color=#0000cc>http://www.binamics.com/hibernatesync/</FONT></A>&nbsp;&nbsp;Hibernate的Eclipse插件<BR>&nbsp;&nbsp;<A href="http://jakarta.apache.org/cactus/integration/eclipse/runner_plugin.html" target=_blank><FONT color=#0000cc>http://jakarta.apache.org/cactus/integration/eclipse/runner_plugin.html</FONT></A>&nbsp;&nbsp;Cactus的Eclipse插件<BR>&nbsp;&nbsp;<A href="http://www.improve-technologies.com/alpha/resin/" target=_blank><FONT color=#0000cc>http://www.improve-technologies.com/alpha/resin</FONT></A>&nbsp;&nbsp;Resin 插件<BR>&nbsp;&nbsp;<A href="http://sourceforge.net/projects/vssplugin" target=_blank><FONT color=#0000cc>http://sourceforge.net/projects/vssplugin</FONT></A>&nbsp;&nbsp;CVS 插件<BR>&nbsp;&nbsp;<A href="http://www.xmlbuddy.com/" target=_blank><FONT color=#0000cc>http://www.xmlbuddy.com</FONT></A>&nbsp;&nbsp;XML 插件<BR>&nbsp;&nbsp;<A href="http://log4e.jayefem.de/index.php/Main_Page" target=_blank><FONT color=#0000cc>http://log4e.jayefem.de/index.php/Main_Page</FONT></A>&nbsp;&nbsp;Log4j 插件<BR>&nbsp;&nbsp;<A href="http://www.omondo.com/" target=_blank><FONT color=#0000cc>http://www.omondo.com/</FONT></A>&nbsp;&nbsp;UML建模插件<BR>&nbsp;&nbsp;<A href="http://www.eclipseme.org/" target=_blank><FONT color=#0000cc>http://www.eclipseme.org/</FONT></A>&nbsp;&nbsp;EclipseME（J2ME）插件<img src ="http://www.blogjava.net/Timnity/aggbug/25948.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/Timnity/" target="_blank">Timnity</a> 2005-12-29 21:48 <a href="http://www.blogjava.net/Timnity/archive/2005/12/29/25948.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>