如何在myeclipse中安装spring插件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在myeclipse中安装spring插件相关的知识,希望对你有一定的参考价值。
在myeclipse中安装spring插件的方法:1、打开myEclipse, 新建一个maven工程, new Maven Project --> all catalog
2、选择 quickstart --> 填写好artifact Id(这个随自己的喜好填写,其他的选项也可以按照自己的喜好来填写) --> finish
3、打开新建项目中 pom.xml文件. 在 <dependencies> </dependencies>中添加Spring官网中提供的代码
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.0.2.RELEASE</version>
</dependency>
4、保存, 然后myEclipse会自动联网下载Spring framework
下载好后, 如需要下载源码和javadoc的话可以右键项目 --> Maven4MyEclipse --> Download javaDoc 和 Download Sources
这就安装好了Spring。 参考技术A myeclipse中一般包含spring strut 以及hibernate的插件,如果你使用的myeclipse没有,请升级使用高版本的myeclipse本回答被提问者采纳
在Eclipse mars 4.5.2 中安装spring 插件 spring tool suite
最近在学习spring,用到的IDE 有eclipse,也有用到 IDEA。
目前对spring还不是很了解,跟着网上的视频来,先学会了spring,然后再选IDE。
题归正转,下面说说怎么在Eclipse mars 4.5.2 中安装spring 插件 spring tool suite。
打开eclipse,然后在菜单栏中点击Help,选中Eclipse MarketPlace:
然后搜索STS(也就是spring tool suite的缩写),回车:
点击Install即可
由于是在线安装,安装的时间可能比较久。
选择accept,然后点击Finish。
以上是关于如何在myeclipse中安装spring插件的主要内容,如果未能解决你的问题,请参考以下文章