-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Eclipse
(未完成)
##设置
-
从[support/eclipse](https://github.com/springside/springside4/tree/master/support/eclipse)中 导入CodeFormatter和Cleanup Profile
相对于Eclipse默认配置,变化如下......
-
import static org.junit.Assert.* 不会被解开成import static org.junit.Assert.Equal
修改Java->Code Style->Organize Import, 设置Number of static imports needed of * to 1.
单元测试中不愿意写Assert.equals()/Assert.isTrue(), 又不想一个个的import所有可能用到的assert函数时有用.
- 设置智能内容辅助的热键
因为默认的热键与输入法切换的热键冲突,所以需要修改General->Keys, 找到Content Assist,个人喜欢改为Shift + Space
##插件
新版Eclipse的Eclipse Markets太好用了。下载插件终于不是件太麻烦的事情,知道插件的名字,直接搜索然后安装就是了。
1.SpringIDE,其实用途只是看application*.xml 文件时,写错类名会有提示,点类名会跳到相应的实现类。
2.EasyShell,在Eclipse左边的目录管理树里选easyshell,就可以打开文件夹,或者该目录下的dos shell。
3.M2Eclipse,其实用途只是看依赖包之间的依赖关系。
##运行调试Web应用。 Eclipse的Web应用runtime插件一般都需要复制整个Web Application内容到一个它的某个目录才能启动,而且对依赖项目的打包经常出问题。因此SpringSide选了用嵌入式的Jetty来就地启动。
仿照在每个示例项目的test目录里的Start.java,复制一个到自己项目的测试目录,然后指定项目webapp目录路径,端口即可。