今天想在eclipse上面配置spring IDE看了网上好多方法配置都是不正确的,看到了下面的方法终于配置正确了。
配置好了spring IDE以后,可以查看bean之间的依赖关系,而且xml中bean定义的时候可以自动提示类的包的位置等。
下面是详细的方法
eclipse配置springIDE
如下是eclipse Helios Release版本的方法。
1.打开eclipse ide,help->install new software..
2.输入updatesite http://springide.org/updatesite
3.这时会出现很多关于spring的插件,选择如下勾选
Extensions/SpringIDE
Resources/SpringIDE
4.按提示重启eclipse.
5.(可选)有很多其它的spring插件都会依赖于这个ajdt,所以你先要安装eclipse ajdt插件,updatesite: http://download.eclipse.org/tools/ajdt/36/update
安装完之后,spring的其它插件就可以继续安装了
果图
如下是eclipse Juno Release版本的方法。
方法1(已验证):eclipse---help-----Eclipse Marketplace----输入spring----然后点击查找----找到spring ide ----install
方法2(未验证):eclipse --help ----install new software----在Work with栏输入: http://springide.org/updatesite
首先安装好spring ide(spring ide的安装请看3)以后,右击项目:
(1)、调出spring explorer出来: eclipse---- Window----show View ----other(输入spring explorer)--- OK
(2)、选中项目-----右击-----Spring Tools----add spring project nature
(3)、第2步操作以后,查看spring explorer会出现项目此时:
eclipse ----Spring explorer----右击项目---Properties----spring----Bean support--Config Files---add ---把bean.xml的文件都选上----点击ok
(4)、可选:Spring ---Dependency Manager 可以把automatically update dependences from Maven pom.xml选择上。
(5)、spring explorer-----找到你想要看的bean.xml----右击---Open Dependency Graph即可看到依赖的关系。
java农民工(侦探的传说) 的文章:
eclipse helios安装springide plugin