﻿<?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-Java World@winfar-文章分类-Eclipse</title><link>http://www.blogjava.net/winfar/category/1158.html</link><description>——Java 之旅</description><language>zh-cn</language><lastBuildDate>Wed, 28 Feb 2007 18:37:11 GMT</lastBuildDate><pubDate>Wed, 28 Feb 2007 18:37:11 GMT</pubDate><ttl>60</ttl><item><title>Eclips使用秘技</title><link>http://www.blogjava.net/winfar/articles/3985.html</link><dc:creator>winfar</dc:creator><author>winfar</author><pubDate>Sun, 01 May 2005 14:47:00 GMT</pubDate><guid>http://www.blogjava.net/winfar/articles/3985.html</guid><wfw:comment>http://www.blogjava.net/winfar/comments/3985.html</wfw:comment><comments>http://www.blogjava.net/winfar/articles/3985.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/winfar/comments/commentRss/3985.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/winfar/services/trackbacks/3985.html</trackback:ping><description><![CDATA[<P align=center><B>Eclips使用秘技(绝对经典)</B></P>前言：&nbsp;<BR>本来我都是使用JBuilderX当主力IDE、但使用了Eclipse后&nbsp;<BR>发现...Eclipse原来也这么好用...渐渐的就爱上了它......&nbsp;<BR>Eclipse优点：免费、程序代码排版功能、有中文化包、可增&nbsp;<BR>设许多功能强大的外挂、支持多种操作系统(Windows、&nbsp;<BR>Linux、Solaris、Mac&nbsp;OSX)..等等。&nbsp;<BR><BR>开此篇讨论串的目的，是希望能将Eclipse的一些使用技巧集&nbsp;<BR>合起来...欢迎大家继续补充下去...由于Eclipse的版本众多&nbsp;<BR>，希望补充的先进们能顺便说明一下您所使用的版本～&nbsp;<BR><BR>Eclipse网站：<A href="http://www.eclipse.org/&nbsp;">http://www.eclipse.org/&nbsp;</A>;<BR>Eclipse中文化教学：JavaWorld站内文章参考&nbsp;<BR><BR>(使用版本：Eclipse&nbsp;2.1.2&nbsp;Release&nbsp;+&nbsp;中文化)&nbsp;<BR><BR>热键篇：&nbsp;<BR>Template：Alt&nbsp;+&nbsp;/&nbsp;<BR>修改处：窗口-&gt;喜好设定-&gt;工作台-&gt;按键-&gt;编辑-&gt;内容辅助。&nbsp;<BR>个人习惯：Shift+SPACE(空白)。&nbsp;<BR>简易说明：编辑程序代码时，打sysout&nbsp;+Template启动键，就&nbsp;<BR>会自动出现：System.out.println();&nbsp;。&nbsp;<BR>设定Template的格式：窗口-&gt;喜好设定-&gt;Java-&gt;编辑器-&gt;模板。&nbsp;<BR><BR>程序代码自动排版：Ctrl+Shift+F&nbsp;<BR>修改处：窗口-&gt;喜好设定-&gt;工作台-&gt;按键-&gt;程序代码-&gt;格式。&nbsp;<BR>个人习惯：Alt+Z。&nbsp;<BR>自动排版设定：窗口-&gt;喜好设定-&gt;Java-&gt;程序代码格式制作程序。&nbsp;<BR>样式页面-&gt;将插入tab(而非空格键)以内缩，该选项取消勾选&nbsp;<BR>，下面空格数目填4，这样在自动编排时会以空格4作缩排。&nbsp;<BR><BR>快速执行程序：Ctrl&nbsp;+&nbsp;F11&nbsp;<BR>个人习惯：ALT+X&nbsp;<BR>修改处：窗口-&gt;喜好设定-&gt;工作台-&gt;按键-&gt;执行-&gt;启动前一次的启动作业。&nbsp;<BR>简易说明：第一次执行时，它会询问您执行模式，&nbsp;<BR>设置好后，以后只要按这个热键，它就会快速执行。&nbsp;<BR>&lt;ALT+Z(排版完)、ATL+X(执行)&gt;..我觉得很顺手^___^&nbsp;<BR><BR>自动汇入所需要的类别：Ctrl+Shift+O&nbsp;<BR>简易说明：&nbsp;<BR>假设我们没有Import任何类别时，当我们在程序里打入：&nbsp;<BR><BR>BufferedReader&nbsp;buf&nbsp;=&nbsp;<BR>new&nbsp;BufferedReader(new&nbsp;InputStreamReader(System.in));&nbsp;<BR><BR>此时Eclipse会警示说没有汇入类别，这时我们只要按下Ctrl+Shift+O&nbsp;<BR>，它就会自动帮我们Import类别。&nbsp;<BR><BR>查看使用类别的原始码：Ctrl+鼠标左键点击&nbsp;<BR>简易说明：可以看到您所使用类别的原始码。&nbsp;<BR><BR>将选取的文字批注起来：Ctrl+/&nbsp;<BR>简易说明：Debug时很方便。&nbsp;<BR>修改处：窗口-&gt;喜好设定-&gt;工作台-&gt;按键-&gt;程序代码-&gt;批注&nbsp;<BR><BR>视景切换：Ctrl+F8&nbsp;<BR>个人习惯：Alt+S。&nbsp;<BR>修改处：窗口-&gt;喜好设定-&gt;工作台-&gt;按键-&gt;窗口-&gt;下一个视景。&nbsp;<BR>简易说明：可以方便我们快速切换编辑、除错等视景。&nbsp;<BR><BR>密技篇：&nbsp;<BR>一套Eclipse可同时切换，英文、繁体、简体显示：&nbsp;<BR>1.首先要先安装完中文化包。&nbsp;<BR>2.在桌面的快捷方式后面加上参数即可，&nbsp;<BR>英文-&gt;&nbsp;-nl&nbsp;"zh_US"&nbsp;<BR>繁体-&gt;&nbsp;-nl&nbsp;"zh_TW"&nbsp;<BR>简体-&gt;&nbsp;-nl&nbsp;"zh_CN"。&nbsp;<BR>(其它语系以此类推)&nbsp;<BR>像我2.1.2中文化后，我在我桌面的Eclipse快捷方式加入参数-n1&nbsp;"zh_US"。&nbsp;<BR>"C:\Program&nbsp;Files\eclipse\eclipse.exe"&nbsp;-n&nbsp;"zh_US"&nbsp;<BR>接口就会变回英文语系噜。&nbsp;<BR><BR>利用Eclipse，在Word编辑文书时可不必将程序代码重新编排：&nbsp;<BR>将Eclipse程序编辑区的程序代码整个复制下来(Ctrl+C)，直接贴(Ctrl+V)到&nbsp;<BR>Word或WordPad上，您将会发现在Word里的程序代码格式，跟Eclipse&nbsp;<BR>所设定的完全一样，包括字型、缩排、关键词颜色。我曾试过JBuilder&nbsp;<BR>、GEL、NetBeans...使用复制贴上时，只有缩排格式一样，字型、颜&nbsp;<BR>色等都不会改变。&nbsp;<BR><BR>外挂篇：&nbsp;<BR>外挂安装：将外挂包下载回来后，将其解压缩后，您会发现features、&nbsp;<BR>plugins这2个数据夹，将里面的东西都复制或移动到Eclipse的features&nbsp;<BR>、plugins数据夹内后，重新启动Eclipse即可。&nbsp;<BR><BR>让Eclipse可以像JBuilderX一样使用拖拉方式建构GUI的外挂：&nbsp;<BR>1.Jigloo&nbsp;SWT/Swing&nbsp;GUI&nbsp;Builder&nbsp;：&nbsp;<BR><A href="http://cloudgarden.com/jigloo/index.html&nbsp;">http://cloudgarden.com/jigloo/index.html&nbsp;</A>;<BR>下载此版本：Jigloo&nbsp;plugin&nbsp;for&nbsp;Eclipse&nbsp;(using&nbsp;Java&nbsp;1.4&nbsp;or&nbsp;1.5)&nbsp;<BR>安装后即可由档案-&gt;新建-&gt;其它-&gt;GUI&nbsp;Form选取要建构的GUI类型。&nbsp;<BR><BR>2.Eclipse&nbsp;Visual&nbsp;Editor&nbsp;Project：&nbsp;<BR><A href="http://www.eclipse.org/vep/&nbsp;">http://www.eclipse.org/vep/&nbsp;</A>;<BR>点选下方Download&nbsp;Page，再点选Latest&nbsp;Release&nbsp;0.5.0进入下载。&nbsp;<BR>除了VE-runtime-0.5.0.zip要下载外，以下这2个也要：&nbsp;<BR>EMF&nbsp;build&nbsp;1.1.1:&nbsp;(build&nbsp;page)&nbsp;(download&nbsp;zip)&nbsp;<BR>GEF&nbsp;Build&nbsp;2.1.2:&nbsp;(build&nbsp;page)&nbsp;(download&nbsp;zip)&nbsp;<BR><BR>3.0&nbsp;M8版本，请下载：&nbsp;<BR>EMF&nbsp;build&nbsp;I200403250631&nbsp;<BR>GEF&nbsp;Build&nbsp;I20040330&nbsp;<BR>VE-runtime-1.0M1&nbsp;<BR><BR>安装成功后，便可由File-&gt;New-&gt;Visual&nbsp;Class开始UI设计。&nbsp;<BR>安装成功后，即可由新建-&gt;Java-&gt;AWT与Swing里选择&nbsp;<BR>所要建构的GUI类型开始进行设计。VE必须配合着对应&nbsp;<BR>版本，才能正常使用，否则即使安装成功，使用上仍会&nbsp;<BR>有问题。&nbsp;<BR><BR>使用Eclipse来开发JSP程序：&nbsp;<BR>外挂名称：lomboz(下载页面)&nbsp;<BR><A href="http://forge.objectweb.org/project/showfiles.php?group_id=97&nbsp;">http://forge.objectweb.org/project/showfiles.php?group_id=97&nbsp;</A>;<BR>请选择适合自己版本的lomboz下载，lomboz.212.p1.zip表示2.1.2版，&nbsp;<BR>lomboz.3m7.zip表示M7版本....以此类推。&nbsp;<BR>lomboz安装以及设置教学：&nbsp;<BR>Eclipse开发JSP-教学文件&nbsp;<BR><BR>Java转exe篇：&nbsp;<BR>实现方式：Eclipse搭配JSmooth(免费)。&nbsp;<BR>1.先由Eclipse制作包含Manifest的JAR。&nbsp;<BR>制作教学&nbsp;<BR>2.使用JSmooth将做好的JAR包装成EXE。&nbsp;<BR>JSmooth下载页面：&nbsp;<BR><A href="http://jsmooth.sourceforge.net/index.php&nbsp;">http://jsmooth.sourceforge.net/index.php&nbsp;</A>;<BR>3.制作完成的exe文件，可在有装置JRE的Windows上执行。&nbsp;<BR><BR>Eclipse-Java编辑器最佳设定：&nbsp;<BR>编辑器字型设定：工作台-&gt;字型-&gt;Java编辑器文字字型。&nbsp;<BR>(建议设定Courier&nbsp;New&nbsp;-regular&nbsp;10)&nbsp;<BR><BR>编辑器相关设定：窗口-&gt;喜好设定-&gt;Java-&gt;编辑器&nbsp;<BR><BR>外观：显示行号、强调对称显示的方括号、强调显示现行行、&nbsp;<BR>显示打印边距，将其勾选，Tab宽度设4，打印编距字段设80。&nbsp;<BR>程序代码协助：采预设即可。&nbsp;<BR>语法：可设定关键词、字符串等等的显示颜色。&nbsp;<BR>附注：采预设即可。&nbsp;<BR>输入：全部字段都勾选。&nbsp;<BR>浮动说明：采预设即可。&nbsp;<BR>导览：采预设即可。&nbsp;<BR><BR>使自动排版排出来的效果，最符合Java设计惯例的设定：&nbsp;<BR>自动排版设定：窗口-&gt;喜好设定-&gt;Java-&gt;程序代码制作格式。&nbsp;<BR><BR>换行：全部不勾选。&nbsp;<BR>分行：行长度上限设：80。&nbsp;<BR>样式：只将强制转型后插入空白勾选。&nbsp;<BR>内缩空格数目：设为4。&nbsp;<BR><BR>Eclipse的教学文件：&nbsp;<BR>Eclipse&nbsp;3.0系列热键表&nbsp;-&nbsp;中英对照解说版&nbsp;(by&nbsp;sungo)&nbsp;~New~&nbsp;<BR>Window+GCC+CDT用Eclipse开发C、C++&nbsp;(by&nbsp;sungo)&nbsp;~New~&nbsp;<BR><BR>其它：&nbsp;<BR>扩充Eclipse的Java&nbsp;开发工具(中文)&nbsp;<BR>使用Eclipse开发J2EE&nbsp;应用程序(中文)&nbsp;<BR>使用Eclipse平台进行除错(中文)&nbsp;<BR>用Eclipse进行XML&nbsp;开发(中文)&nbsp;<BR>开发Eclipse外挂程序(中文)&nbsp;<BR>国际化您的Eclipse外挂程序(英文)&nbsp;<BR>将Swing编辑器加入Eclipse(英文)&nbsp;<BR>如何测试你的Eclipse&nbsp;plug-in符合国际市场需求(英文)&nbsp;<BR><BR>Eclipse的相关网站：&nbsp;<BR><A href="http://eclipse-plugins.2y.net/eclipse/index.jsp&nbsp;">http://eclipse-plugins.2y.net/eclipse/index.jsp&nbsp;</A>;<BR><A href="http://www.eclipseplugincentral.com/&nbsp;">http://www.eclipseplugincentral.com/&nbsp;</A>;<BR>Eclipse相关教学[简体]&nbsp;<BR><BR>&nbsp;&nbsp;<BR><BR>&nbsp;&nbsp;<BR><BR>写程序写到很累了，想休息一下？？玩玩小Game是&nbsp;<BR>不错的选择，下面介绍使用Eclipse玩Game的Plug-in。&nbsp;<BR><BR>补充外挂篇：&nbsp;<BR>Eclipse-Games：&nbsp;<BR><A href="http://eclipse-games.sourceforge.net/&nbsp;">http://eclipse-games.sourceforge.net/&nbsp;</A>;<BR>版本选：Latest&nbsp;Release&nbsp;3.0.1&nbsp;(Release&nbsp;Notes)&nbsp;Sat,&nbsp;3&nbsp;Jan&nbsp;2004&nbsp;<BR><BR>外挂安装完后，重新开启Eclipse。&nbsp;<BR>窗口-&gt;自订视景-&gt;其它-&gt;勾选Game&nbsp;Actions。&nbsp;<BR>再将Eclipse关闭，重新再启动，就可以开始玩噜。&nbsp;<BR>(共有4种：采地雷I、采地雷II、贪食蛇、仓库番。)&nbsp;<BR><BR>(Eclipse&nbsp;2.1.2&nbsp;+中文化&nbsp;玩Game&nbsp;-仓库番)&nbsp;&nbsp;&nbsp;<BR><BR>补充：(于Eclipse使用assertion机制)&nbsp;<BR>Eclipse版本：2.1.3&nbsp;release。&nbsp;<BR><BR>JDK1.4版新加入的assertion机制(关键词：assert)，由于JDK1.4编译器&nbsp;<BR>预设是兼容1.3，所以要使用assert必须在编译时加上-source&nbsp;1.4的参数。&nbsp;<BR><BR>C:\&gt;javac&nbsp;-source&nbsp;1.4&nbsp;XXX.java<BR>执行时则必须加-ea&nbsp;或-enableassertions参数启动。&nbsp;<BR><BR>C:\&gt;java&nbsp;-ea&nbsp;XXX<BR><BR>如要在Eclipse中使用assertion机制，请作以下设定：&nbsp;<BR>设定一：(编译设定)&nbsp;<BR>Windows-&gt;Preferance-&gt;Java-&gt;Compiler-&gt;Compliance&nbsp;and&nbsp;Classfiles&nbsp;<BR>页面。将..JDK&nbsp;Compliance&nbsp;level-&gt;Compiler&nbsp;compliance&nbsp;level调成1.4。&nbsp;<BR><BR>设定二：(执行设定)&nbsp;<BR>Run-&gt;Run-&gt;(x)=Arguments页面，在VM&nbsp;arguments加入-da参数，按下&nbsp;<BR>Run&nbsp;button便可看到启动assertion后的执行结果。&nbsp;<BR><BR>(Eclipse&nbsp;2.1.3&nbsp;release&nbsp;+&nbsp;assertion测试)&nbsp;<BR>&lt;assert判别为false，所以show出AssertionError&gt;&nbsp;&nbsp;&nbsp;<BR><BR>新版(m8+)的eclipse可以设vm&nbsp;arguments&nbsp;<BR>另外提供一种设法，是在eclipse启动时加入vm&nbsp;arguments(跟加大eclipse预设内存大小的方式一样)&nbsp;<BR>这样就不用每次run都得需去设vm&nbsp;arguments&nbsp; <img src ="http://www.blogjava.net/winfar/aggbug/3985.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/winfar/" target="_blank">winfar</a> 2005-05-01 22:47 <a href="http://www.blogjava.net/winfar/articles/3985.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>plugins</title><link>http://www.blogjava.net/winfar/articles/3729.html</link><dc:creator>winfar</dc:creator><author>winfar</author><pubDate>Mon, 25 Apr 2005 09:07:00 GMT</pubDate><guid>http://www.blogjava.net/winfar/articles/3729.html</guid><wfw:comment>http://www.blogjava.net/winfar/comments/3729.html</wfw:comment><comments>http://www.blogjava.net/winfar/articles/3729.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/winfar/comments/commentRss/3729.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/winfar/services/trackbacks/3729.html</trackback:ping><description><![CDATA[<DIV class=postTitle><A href="http://www.tusc.com.au/tutorial/html/index.html"><FONT color=#000080 size=2><U>http://www.tusc.com.au/tutorial/html/index.html</U></FONT></A><BR>利用Eclipse,LOMBOZ plugins,JBoss开发J2EE教学的文章（En）很精彩</DIV>
<DIV class=postText>
<P><STRONG><FONT size=2>1.? lomboz.301.zip 与emf-sdo-runtime-2.0.0.zip(著名的开发J2ee的插件)</FONT></STRONG></P>
<P>下载网址：<A href="http://forge.objectweb.org/project/showfiles.php?group_id=97"><FONT color=#000080 size=2><U>http://forge.objectweb.org/project/showfiles.php?group_id=97</U></FONT></A>? 　</P>
<P><A href="http://www.objectlearn.com/"><FONT color=#000080 size=2><U>http://www.objectlearn.com/</U></FONT></A> </P>
<P>Lomboz 可以做很多事情，是使用 Eclipse+JBoss 做 J2EE 的首选。 </P>
<P><FONT size=2><STRONG>2.MyEclipse,最好的J2EE开发框架</STRONG></FONT></P>
<P>下载Myeclipse userId: ylfly? password: *******<BR><A href="http://www.myeclipseide.com/ContentExpress-display-ceid-47.html"><FONT color=#000080 size=2><U>http://www.myeclipseide.com/ContentExpress-display-ceid-47.html</U></FONT></A><BR>MyEclipse的注册码：<BR>for eclispe3.0版的：<BR>IceCraft<BR>VAR7ZL-819-56-54678656108018950<BR>for eclispe2.1版的：<BR>IceCraft<BR>VAR7ZL-719-56-54678657538454123</P>
<P><STRONG><FONT size=2>3.Log4j或者Apache commons Logger最得力的助手就是 Log4e：</FONT></STRONG> <BR>??? 官方网站：<A href="http://log4e.jayefem.de/"><FONT color=#000080 size=2><U>http://log4e.jayefem.de/</U></FONT></A><BR>??? 下载连接：<A href="http://log4e.jayefem.de/download/de.jayefem.log4e_0.5.5.zip"><FONT color=#000080 size=2><U>http://log4e.jayefem.de/download/de.jayefem.log4e_0.5.5.zip</U></FONT></A></P>
<P><STRONG><FONT size=2>4. Easy Struts支持Struts的插件 (0.64版只支持Eclipse2.X)</FONT></STRONG><BR>是开放源代码组织sourceforge.net上的一个项目，目前最新的版本是0.64， </P>
<P><A href="http://sourceforge.net/project/showfiles.php"><FONT color=#000080 size=2><U>http://sourceforge.net/project/showfiles.php</U></FONT></A>？group_id=54542&amp;package_id=49230 </P>
<P><A href="http://easystruts.sourceforge.net/"><FONT color=#000080 size=2><U>http://easystruts.sourceforge.net/</U></FONT></A> </P>
<P><FONT size=4><STRONG><FONT size=2>5. TomcatPlugin 支持Tomcat插件</FONT> <BR></STRONG></FONT><A href="http://www.sysdeo.com/eclipse/tomcatPlugin.html"><FONT color=#000080 size=2><U>http://www.sysdeo.com/eclipse/tomcatPlugin.html</U></FONT></A> </P>
<P><BR><FONT size=2><STRONG>6.Hibernate Synchronizer</STRONG><BR></FONT><FONT size=1>Hibernate Synchronizer is a free Eclipse plugin code generation tool to be used with the Hibernate persistence framework. The plugin will automatically generate java code when your hibernate mapping files are modified. Objects are created with generated code in an abstract base class and a user-modifiable extension class so user code does not get deleted when the generation is performed. <BR></FONT><A href="http://www.binamics.com/hibernatesync/"><FONT color=#000080 size=1><U>http://www.binamics.com/hibernatesync/</U></FONT></A><BR><A href="https://sourceforge.net/project/showfiles.php?group_id=99370"><FONT color=#000080 size=1><U>https://sourceforge.net/project/showfiles.php?group_id=99370</U></FONT></A><BR><FONT size=1>HibernateSynchronizer-2.1.25-Eclipse3M6.zip?? 只支持到M7</FONT></P>
<P><STRONG><FONT size=2>7. SWT Designer 使GUI更cool，更in，更happy!</FONT></STRONG><BR><A href="http://www.swt-designer.com/"><FONT color=#000080 size=2><U>http://www.swt-designer.com/</U></FONT></A>?? 14天</P>
<P><FONT size=2><STRONG>8. XML Editor &amp; XSLT Debugger 编辑XML的插件</STRONG> <BR></FONT><A href="http://www.oxygenxml.com/"><FONT color=#000080 size=2><U>http://www.oxygenxml.com/</U></FONT></A> </P>
<P><FONT size=2><STRONG>8.1支持Eclipse 3.0 的XML插件</STRONG><BR></FONT><A href="http://www.xmlbuddy.com/"><FONT color=#000080 size=2><U>http://www.xmlbuddy.com/</U></FONT></A></P>
<P><FONT size=2><STRONG>8.2XML Viewer <BR></STRONG><FONT size=1>Version: 1.1.7<BR></FONT><A href="http://tabaquismo.freehosting.net/ignacio/eclipse/xmlview/index.html"><FONT color=#000080 size=1><U>http://tabaquismo.freehosting.net/ignacio/eclipse/xmlview/index.html</U></FONT></A></FONT></P>
<P><FONT size=4><FONT size=2><BR><STRONG>9.UML Tool for Eclipse <BR></STRONG><A href="http://www.visual-paradigm.com/download.php?shortName=sdeec"><FONT color=#000080 size=1><U>http://www.visual-paradigm.com/download.php?shortName=sdeec</U></FONT></A></FONT></FONT></P>
<P><FONT size=4><STRONG><FONT size=2>9.1 UML插件 Omondo的(支持eclipse 3.0 的studio 1.0 只试用20天)</FONT> <BR></STRONG></FONT><A href="http://www.omondo.com/"><FONT color=#000080 size=2><U>http://www.omondo.com/</U></FONT></A> <BR>useId :ylfly password:*******</P>
<P><FONT size=2><STRONG>9.2EclipseUML2? is Eclipse tools</STRONG></FONT></P>
<P><A href="http://www.eclipse.org/uml2/"><FONT color=#000080 size=2><U>http://www.eclipse.org/uml2/</U></FONT></A></P>
<P><FONT size=4><STRONG><FONT size=2>10.Eclipse加速插件KeepResident</FONT> </STRONG></FONT></P>
<P><A href="http://suif.stanford.edu/pub/keepresident/"><FONT color=#000080 size=1><U>http://suif.stanford.edu/pub/keepresident/</U></FONT></A></P>
<P>原理:利用两个 Windows API - SetProcessWorkingSetSize 与 VirtualLock (适用于 Windows 平台)。</P>
<P>切换时果然快很多。</P>
<P>官方建议最小值设定在 100 MB，最大值 250 MB 左右。</P>
<P><FONT size=2><STRONG>11.RMI Plugin for Eclipse 1.6.0 for Eclipse 3.0</STRONG><BR></FONT><A href="http://www.genady.net/rmi"><STRONG><FONT color=#000080 size=2><U>http://www.genady.net/rmi</U></FONT></STRONG></A><STRONG><FONT size=2> <BR></FONT></STRONG></P>
<P><STRONG><FONT size=2>12其它插件</FONT></STRONG></P>
<P>perl插件 <A href="http://e-p-i-c.sf.net/updates"><FONT color=#000080 size=2><U>http://e-p-i-c.sf.net/updates</U></FONT></A><BR>C#插件? <A href="http://www.improve-technologies.com/alpha/updates/site.xml"><FONT color=#000080 size=2><U>http://www.improve-technologies.com/alpha/updates/site.xml</U></FONT></A><BR>C插件??? <A href="http://update.eclipse.org/tools/cdt/releases/new"><FONT color=#000080 size=2><U>http://update.eclipse.org/tools/cdt/releases/new</U></FONT></A><BR>Hex插件 <A href="http://ehep.sourceforge.net/update"><FONT color=#000080 size=2><U>http://ehep.sourceforge.net/update</U></FONT></A></P>
<P><STRONG><FONT size=2>13.Eclipse插件使用links目录的用法：<BR></FONT></STRONG>　假设把插件安装在d:\myplugin目录中，则myplugin的目录结构一定要是这样的：<BR>　　d:\myplugin\eclipse\plugins\插件 及 d:\myplugin\eclipse\features\插件<BR>　　例如安装EclipseME插件到d:\myplugin目录中，则目录结构</P>
<P>d:\myplugin\eclipse\plugins\eclipseme_0.4.5。<BR>　　再假设eclipse安装在d:\eclipse目录中，则在eclipse目录中创建名称为links的目录，在links目</P>
<P>录中建立一个link文件，比如myplugin.link，该文件内容为path=d:\myplugin。<BR>　　启动eclipse，插件即安装上了，如果想暂时不启动插件，只需把myplugin.link文件删除即可。<BR>补充说明：<BR>　1. 插件可以分别安装在多个自定义的目录中。<BR>　2. 一个自定义目录可以安装多个插件。<BR>　3. link文件的文件名及扩展名可以取任意名称，比如myplugin.txt，goodplugin都可以。<BR>　4. link文件可以有多行path=插件目录，对应多个自定义插件目录，每一行的path参数都将生效。<BR>　5. 在links目录也可以有多个link文件，每个link文件中的path参数都将生效。<BR>　6. 插件目录可以使用相对路径，如果我们把myplugin目录创建在eclipse安装目录中，如上例中的</P>
<P>d:\eclipse目录中，则只需设置path=myplugin即可。</P>
<P><STRONG><FONT size=2>14.Eclipse tools</FONT></STRONG></P>
<P>1).ALL SDK bundle (includes Source, Runtime and Docs for EMF, XSD, and SDO). <BR>?<BR>2).The Graphical Editing Framework (GEF) allows developers to take an existing application </P>
<P>model and quickly create a rich graphical editor.</P>
<P>3).UML2 is an EMF-based implementation of the UML 2.0 metamodel for the Eclipse platform.</P>
<P><A href="http://www.eclipse.org/emf/"><FONT color=#000080 size=2><U>http://www.eclipse.org/emf/</U></FONT></A><BR><A href="http://www.eclipse.org/gef/"><FONT color=#000080 size=2><U>http://www.eclipse.org/gef/</U></FONT></A><BR><A href="http://www.eclipse.org/uml2/"><FONT color=#000080 size=2><U>http://www.eclipse.org/uml2/</U></FONT></A></P>
<P><STRONG><FONT size=2>15.plug-in网址：</FONT></STRONG></P>
<P><A href="http://www.eclipse-plugins.info/eclipse/index.jsp"><FONT color=#000080 size=2><U>http://www.eclipse-plugins.info/eclipse/index.jsp</U></FONT></A></P>
<P><A href="http://www.eclipse-workbench.com/jsp/"><FONT color=#000080 size=2><U>http://www.eclipse-workbench.com/jsp/</U></FONT></A> </P>
<P><A href="http://eclipse-plugins.2y.net/eclipse/index.jsp"><FONT color=#000080 size=2><U>http://eclipse-plugins.2y.net/eclipse/index.jsp</U></FONT></A> （非常非常著名的插件更新网站） </P>
<P><A href="http://www.crionics.com/products/opensource/eclipse/eclipse.jsp"><FONT color=#000080 size=2><U>http://www.crionics.com/products/opensource/eclipse/eclipse.jsp</U></FONT></A> （分类清楚） </P>
<P><A href="http://www.eclipseplugincentral.com/"><FONT color=#000080 size=2><U>http://www.eclipseplugincentral.com/</U></FONT></A></P>
<P><STRONG><FONT size=2>16.调试JSP时,在tomcat里改<TOMCAT_HOME>\conf\server.xml</FONT></STRONG><BR><CONTEXT P < path="/myweb">
<P><CONTEXT P < path="/myweb">
<P>??????? docbase="C:\eclipse\workspace\MyJ2EEProject\myweb"</P>
<P>????????? workDir="C:\eclipse\workspace\MyJ2EEProject\j2src" /&gt;</P>
<P><CONTEXT <BR debug="0">docBase="D:\workspace\myJSP\test"<BR>path="/test" reloadable="true" workDir="D:\workspace\myJSP\j2src"/&gt;</P>
<P></P>
<P><STRONG>j2src不要改动</STRONG></P>
<P><STRONG><FONT size=2>17.CVS---并发版本系统(中文手册)v1.12.9</FONT></STRONG><BR><A href="http://cvsdoc-zh.gro.clinux.org/cvsdoc/zh_CN/html/index.html"><FONT color=#000080 size=2><U>http://cvsdoc-zh.gro.clinux.org/cvsdoc/zh_CN/html/index.html</U></FONT></A><BR><A href="http://cvsdoc-zh.gro.clinux.org/"><FONT color=#000080 size=2><U>http://cvsdoc-zh.gro.clinux.org</U></FONT></A><BR>另一个CVS手册：<BR><A href="http://www.chedong.com/tech/cvs_card.html"><FONT color=#000080 size=2><U>http://www.chedong.com/tech/cvs_card.html</U></FONT></A></P>
<P><STRONG><FONT size=2>18.Preferences无法显示新安装的插件的解决办法</FONT></STRONG></P>
<P><FONT size=1>删除C:\eclipse\configuration\org.eclipse.update下的platform.xml文件，重新启动Eclipse</FONT></P>
<P><BR><STRONG><FONT size=2>19.评价</FONT></STRONG></P>
<P>当前世界上最新最实用的IDE环境Eclipse。加上分析设计工具eclipseUML、MVC构架的Struts、</P>
<P>对象数据绑定构架OJB，Web系统的自动单元测试工具JUnit和HttpUnit，还有最普及的数据库MySQL，最</P>
<P>流行的版本管理服务器CVS，和支持Java/JSP/servlet的最佳Web引擎tomcat ,jboss。</P>
<P><STRONG><FONT size=2>20.Eclipse的许可证是怎样的？</FONT></STRONG><BR>现在Eclipse相关的许可证是大多数基于Common Public License (CPL)，CPL是一个为Open Source </P>
<P>Initiative (OSI)所认可的许可证。由于Eclipse Foundation的建立，Eclipse的许可证将逐渐趋向于使</P>
<P>用Eclipse Public License (EPL)，EPL是一个与CPL相类似的许可证，正在进行OSI的认证工作。此外，</P>
<P>Eclipse还涉及到多个开源项目和各类许可证，主要有 Apache Software License、IBM Public License</P>
<P>、Metro Link Public License和Mozilla Public License。个人无需太关心许可证的问题，企业在使用</P>
<P>Eclipse进行开发之前，最好请法律界人士研究一下。</P>
<P>各许可证的网址是：</P>
<P><A href="http://www.eclipse.org/legal/cpl-v10.html"><FONT color=#000080 size=2><U>http://www.eclipse.org/legal/cpl-v10.html</U></FONT></A>、</P>
<P><A href="http://www.eclipse.org/legal/epl-v10.html"><FONT color=#000080 size=2><U>http://www.eclipse.org/legal/epl-v10.html</U></FONT></A>、</P>
<P><A href="http://www.apache.org/licenses/LICENSE"><FONT color=#000080 size=2><U>http://www.apache.org/licenses/LICENSE</U></FONT></A>、</P>
<P><A href="http://oss.software.ibm.com/developerworks/opensource/license10.html"><FONT color=#000080 size=2><U>http://oss.software.ibm.com/developerworks/opensource/license10.html</U></FONT></A>、</P>
<P><A href="http://www.opengroup.org/openmotif/supporters/metrolink/license.html"><FONT color=#000080 size=2><U>http://www.opengroup.org/openmotif/supporters/metrolink/license.html</U></FONT></A>、</P>
<P><A href="http://www.mozilla.org/MPL/MPL-1.1.html"><FONT color=#000080 size=2><U>http://www.mozilla.org/MPL/MPL-1.1.</U></FONT></A></P></DIV><img src ="http://www.blogjava.net/winfar/aggbug/3729.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/winfar/" target="_blank">winfar</a> 2005-04-25 17:07 <a href="http://www.blogjava.net/winfar/articles/3729.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>