标签:file release 空间 trigger ash html down unicode update
JDK 环境变量配置
1. 系统变量→新建 JAVA_HOME 变量 。变量值填写jdk的安装目录
2. 系统变量→寻找 Path 变量→编辑。在变量值最后输入
%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin;
3. 系统变量→新建 CLASSPATH 变量。变量值填写 (注意最前面有一点)
.;%JAVA_HOME%\lib;%JAVA_HOME%\lib\tools.jar
myeclipse 配置
Window-->Preferences
一. 设置工作空间编码
General --> Workspace --> Text file enconding 设置为utf-8
二. General > Editors > File Associatioin
1. htm、html改成MyEclipse HTML Editor (中间不要有Visual)
2. Jsp也改成 MyEclipse JSPEditor (中间不要有Visual)
三. Files and Editors-->JSP
Encoding改成ISO10646/Unicode(UTF-8)
四. Files and Editors-->HTML-->HTML Source
Prompt when these characters are inserted 填写26字母
五. Java-->Editors -->Content Assist(XML也是这样)
Auto activation triggers for Java 填写26字母
六. 禁用 updating indexes
Maven:取消勾选 Download repository index updates on startup
七. 关闭MyEclipse的自动validation
validation:将Build下全部勾取消
如果你需要验证某个文件的时候,我们可以单独去验证它。方法是:
在需要验证的文件上( 右键 -> MyEclipse -> Run Validation)。
八. 启动优化,关闭不需要使用的模块
General > Startup andy Shutdown
九. 禁止myeclipse开启时自动打开dashboard页面
把右下角的Don‘t show dashboard on startup勾上就OK了
十. SVN在线安装地址:http://subclipse.tigris.org/update_1.12.x
十一. springMVC在线安装地址:http://download.springsource.com/release/TOOLS/update/e4.6/
十二. 取消自动补充括号,双引号
Java -> Editors -> Typing 取消勾选 第一个和第二个
十三. 取消复制的内容自动转义字符
Java -> Editor -> Typing:取消勾选 Escape text when pasting into a string literal
————————————————
版权声明:本文为CSDN博主「未知街」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_36797286/java/article/details/80647614
标签:file release 空间 trigger ash html down unicode update
原文地址:https://www.cnblogs.com/ixixi/p/12604755.html