eclipse2019-03版本集成STS(Spring Tool Suite (STS) for Eclipse)插件以及遇到的问题

开发SpringBooot项目,想使用它写application.properties文件出现代码提示,就手动安装了STS插件,安装完之后发现这个插件挺好用的,可以创建SpringBoot项目,下面介绍安装和安装出现的一些问题。

 STS:官网 https://spring.io/tools/sts/  上面有sts功能的详细描述

     换句话说, Spring Tool Suite是一个定制版的eclipse, 由spring framework官方在javaee版本的eclipse上包装spring插件出来的版本, 其核心还是javaee版本的eclipse。

    所以可以直接从官网下载已经集成了sts的Eclipse 

    各个Eclipse版本的STS : https://spring.io/tools/sts/legacy
 

1.下载你的Eclipse版本对应的STS插件,我的Eclipse版本是Luna Service Release 1a (4.11.1)   

https://download.springsource.com/release/STS/3.9.8.RELEASE/dist/e4.11/spring-tool-suite-3.9.8.RELEASE-e4.11.0-win32-x86_64.zip

上面还可以下载之前的历史版本,下载的时候你可以选择右键复制链接地址,上面链接地址是我复制的。也可以选择下载到本地进行安装。

2.打开Eclipse进行安装:Help->Install New Software->Add->Archive Location:选中你下载的sts压缩包,Name:随便写,点击OK

3. 勾选带有Spring IDE的项 (有4项),并去掉Contact all update…前面的勾选,点击Next

4. 点击Next

5. 勾选 I accept the terms.... 点击finish,等待安装

6. 安装完成之后,会提示重启Eclipse

7.验证是否安装成功

安装成功之后进行测试

安装碰到的问题:eclipse版本和sts版本一定要对的上,项目一定是maven集成的springboot项目,不然就不会出现提示。

猜你喜欢

转载自blog.csdn.net/qq_39008613/article/details/99967080