- 浏览: 163099 次
- 性别:
- 来自: 徐州
-
文章分类
- 全部博客 (94)
- 电脑小技巧 (6)
- 工具 (5)
- html javascript ajax (14)
- 面试题目 (1)
- 数据库 (13)
- linux (3)
- java (21)
- spring 中的bean 大小写 (1)
- lucene compass (1)
- windows7安装 (2)
- 使用WinPE安装Windows 7 (1)
- delphi (1)
- spring3 mvc ,aop ,spring security (0)
- spring3 mvc (3)
- aop (3)
- spring security (2)
- InetAddress (1)
- ipv6 (1)
- video 视频 (0)
- 地址 (1)
- collabnet (1)
- spring (1)
- phonegap (1)
- JRebel (1)
- ionic (1)
- scriptx (1)
- flex (1)
最新评论
-
snihcel:
expression="execution(* or ...
spring3 mvc 添加aop支持(Spring MVC 注解下Controller 的AOP) -
xuxiangpan888:
weaponhuang 写道确定AOP能对conttoler进 ...
spring3 mvc 添加aop支持(Spring MVC 注解下Controller 的AOP) -
weaponhuang:
确定AOP能对conttoler进行拦截????这个我搞了好几 ...
spring3 mvc 添加aop支持(Spring MVC 注解下Controller 的AOP) -
huangyunbin:
你在你的项目中试验过吗?我在我的项目中试了下,不行啊。然后我是 ...
spring3 mvc 添加aop支持(Spring MVC 注解下Controller 的AOP) -
梅花簪:
方法斯蒂芬
spring3 mvc 添加aop支持(Spring MVC 注解下Controller 的AOP)
1、下载最新的SVN包(我下的是1.0.6版):
http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240
2、在你的磁盘上任意位置创建文件夹:“myplugins/svn”。名字可以任取,为了方便插件管理,建议名称为“myplugins”。
3、将解压的svn里的两个文件夹拷贝到“myplugins/svn”下。
4、复制下列java代码,修改路径并执行:
这里需要注意的是修改成为刚才svn所在路径,建议改为绝对路径。比如我的svn在“/opt/soft/Genuitec/myplugins/svn/”,那么就这样:String plugin = "/opt/soft/Genuitec/myplugins/svn/";
用windows的朋友只需要设置你们的绝对路径就可以了,比如d:/myplugins/svn/。。。
5、找到“$myeclipse_home/configuration/org.eclipse.equinox.simpleconfigurator/”,打开其中的“bundles.inf”文件,为了防止分不清是不是我们自己后加的东西,在最后面多回几次车,然后粘贴第4步运行后的代码,保存
6、重启myeclipse
7、import工程,看看最下面是不是多了一个“other”文件夹?没错,就是他了,我们的svn终于回来了!
值得一提的是:这种方法可以安装任意一个插件,太爽了!
以上为转载,说能装任意一个插件 http://sourceforge.jp/projects/propedit/downloads/36845/jp.gr.java_conf.ussiy.app.propedit_5.0.1.zip
http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240
2、在你的磁盘上任意位置创建文件夹:“myplugins/svn”。名字可以任取,为了方便插件管理,建议名称为“myplugins”。
3、将解压的svn里的两个文件夹拷贝到“myplugins/svn”下。
4、复制下列java代码,修改路径并执行:
package app; import java.io.File; import java.util.ArrayList; import java.util.List; /** * MyEclipse9 插件配置代码生成器 * * */ public class PluginConfigCreator { public PluginConfigCreator() { } public void print(String path) { List<String> list = getFileList(path); if (list == null) { return; } int length = list.size(); for (int i = 0; i < length; i++) { String result = ""; String thePath = getFormatPath(getString(list.get(i))); File file = new File(thePath); if (file.isDirectory()) { String fileName = file.getName(); if (fileName.indexOf("_") < 0) { print(thePath); continue; } String[] filenames = fileName.split("_"); String filename1 = filenames[0]; String filename2 = filenames[1]; result = filename1 + "," + filename2 + ",file:/" + path + "/" + fileName + "//,4,false"; System.out.println(result); } else if (file.isFile()) { String fileName = file.getName(); if (fileName.indexOf("_") < 0) { continue; } int last = fileName.lastIndexOf("_");// 最后一个下划线的位置 String filename1 = fileName.substring(0, last); String filename2 = fileName.substring(last + 1, fileName .length() - 4); result = filename1 + "," + filename2 + ",file:/" + path + "/" + fileName + ",4,false"; System.out.println(result); } } } public List<String> getFileList(String path) { path = getFormatPath(path); path = path + "/"; File filePath = new File(path); if (!filePath.isDirectory()) { return null; } String[] filelist = filePath.list(); List<String> filelistFilter = new ArrayList<String>(); for (int i = 0; i < filelist.length; i++) { String tempfilename = getFormatPath(path + filelist[i]); filelistFilter.add(tempfilename); } return filelistFilter; } public String getString(Object object) { if (object == null) { return ""; } return String.valueOf(object); } public String getFormatPath(String path) { path = path.replaceAll("////", "/"); path = path.replaceAll("//", "/"); return path; } public static void main(String[] args) { /*你的插件的安装目录*/ String plugin = "改成安装目录//Genuitec//svn"; new PluginConfigCreator().print(plugin); } }
这里需要注意的是修改成为刚才svn所在路径,建议改为绝对路径。比如我的svn在“/opt/soft/Genuitec/myplugins/svn/”,那么就这样:String plugin = "/opt/soft/Genuitec/myplugins/svn/";
用windows的朋友只需要设置你们的绝对路径就可以了,比如d:/myplugins/svn/。。。
5、找到“$myeclipse_home/configuration/org.eclipse.equinox.simpleconfigurator/”,打开其中的“bundles.inf”文件,为了防止分不清是不是我们自己后加的东西,在最后面多回几次车,然后粘贴第4步运行后的代码,保存
6、重启myeclipse
7、import工程,看看最下面是不是多了一个“other”文件夹?没错,就是他了,我们的svn终于回来了!
值得一提的是:这种方法可以安装任意一个插件,太爽了!
以上为转载,说能装任意一个插件 http://sourceforge.jp/projects/propedit/downloads/36845/jp.gr.java_conf.ussiy.app.propedit_5.0.1.zip
- jp.gr.java_conf.ussiy.app.propedit_5.0.1.zip (195.9 KB)
- 下载次数: 1
发表评论
-
JRebel
2016-06-02 10:14 5982. 单独使用JRebel.jar破解版(如在64位下WIND ... -
android
2016-05-10 14:53 354对于 LinearLayout 当 android:ori ... -
db2学习
2014-06-23 11:47 1014LOAD CLIENT FROM 'E:\1\data\EC ... -
html 里的回车换行,制表符 引号,\ 等符号的转化
2014-06-22 17:17 1126/* * To change this license h ... -
netbeans插件
2013-12-10 22:42 470Text Popup Menu 在 Windows 7 ... -
ipv6
2013-11-24 20:23 542Window--Preferences--JAVA--Inst ... -
java编码转化
2013-11-09 16:46 598@Test public void test ... -
eclipse打开插件
2013-11-06 16:24 624openExplorer 一个eclipse小插件——打开当前 ... -
在Windows上与MySQL服务器的连接失败(大数据量) For Windows-based platforms, see Microsoft Knowle
2013-07-16 09:11 1273发生的异常: The driver was unable ... -
java 公用库
2013-03-13 10:24 826转载 本文主要介绍自己在开发过程中总结的一些Java工具类,主 ... -
InetAddress
2013-03-04 13:59 641String ip = ""; ... -
转文件编码格式
2012-06-19 19:55 907转@Test public void testConver ... -
lucene compass
2011-09-25 17:39 934PaodingAnalyzer analy ... -
spring 中的bean 大小写
2011-07-19 16:45 2554使用spring注释形式注入bean,通过@Component ... -
sooba xpdf lucene
2010-11-30 11:26 1172XPDF使用文档 XPDF版本 3.0.2 日期 2008 ... -
struts2
2010-09-17 11:48 661<s:if test="%{#session. ... -
编 码
2009-08-08 00:06 807Java中的ASCII,Unicode和UTF ... -
jBPM4.0中文文档.pdf
2009-07-23 10:16 1869jBPM4.0中文文档 -
Java中获取指定URL的输出
2009-07-21 19:38 1484import java.io.ByteArrayOutputS ... -
location.href 和session的问题
2009-05-21 18:52 2000一个页面有两个 iframe 在其中一个iframe页面内访问 ...
相关推荐
其中,"MyEclipse property插件"是专门为处理和管理项目中的properties属性文件而设计的工具。这个插件极大地提高了开发者在处理这类文件时的效率,解决了传统方式下可能出现的乱码问题,确保了代码的可读性和准确性...
"property命令.txt"可能是关于使用Properties文件的相关命令或者操作指南,而"jp.gr.java_conf.ussiy.app.propsearch_2.0.0_for_eclipse3.1.zip"是一个适用于Eclipse 3.1版本的插件包,可能包含了MyEclipse ...
在团队环境中,使用版本控制系统如Git或SVN管理代码时,MyEclipse的Spring插件能确保在多人协作时保持配置的一致性,减少因配置冲突带来的问题。 总结来说,MyEclipse的Spring自动提示功能是Spring开发中的得力...
- **方式一**: 下载指定的压缩包并解压,此方式已包含SVN插件。 - **方式二**: 下载安装程序并自行安装SVN插件。 - **svn地址**: - 地址1: https://10.10.10.41/svn/gytech/06-财富库/03-体系文件/02-开发/01-...
- **1.1.2 SVN及PropertyEdit插件的安装** - 安装SVN版本控制系统插件Subclipse,可以从官方网站获取。 - PropertyEdit插件用于编辑`.properties`文件,可以通过Eclipse的软件更新功能安装。 - **1.1.3 安装MySQL...