1.安装 SPRING TOOL SUITE
使用Spring框架之前,需要先在eclipse中安装SPRING TOOL SUITE。
SPRING TOOL SUITE 是一个 Eclipse 插件,利用该插件可以更方便的在 Eclipse 平台上开发基于 Spring 的应用。
安装方法说明(springsource-tool-suite-3.9.2.RELEASE-e4.6.3-updatesite.zip): (1)Help --> Install New Software... (2)Click Add... (3)In dialog Add Site dialog, click Archive... (4)Navigate to springsource-tool-suite-3.9.2.RELEASE-e4.6.3-updatesite.zip and click Open (5)Clicking OK in the Add Site dialog will bring you back to the dialog 'Install' (6)Select the xxx/Spring IDE that has appeared (7)Click Next and then Finish (8)Approve the license (9)Restart eclipse when that is asked
2.搭建 Spring 开发环境
在eclipse中新建一个工程(普通java工程即可),命名为spring_demo。
(1)把以下 jar 包加入到工程的 classpath 下:
注:将jar包复制放入到工程的classpath的lib文件夹下之后,需选中所有jar包,右击选中”Build Path”,”add to path”将jar包导入。
(2)Spring 的配置文件: 一个典型的 Spring 项目需要创建一个或多个 Bean 配置文件, 这些配置文件用于在 Spring IOC 容器里配置 Bean. Bean 的配置文件可以放在 classpath 下, 也可以放在其它目录下。
配置文件的创建:
右击src—>new—>other—>Spring—>Spring Bean Configuration File创建Spring配置文件。
3.建立Spring项目
(1)创建一个HelloWorld测试类
(2)在Spring配置文件中配置该类,以获取该类的实例
(3)创建一个Main类,用于测试Spring的配置结果。
至此,一个使用Spring框架的简单例子已经完成。
SPRING TOOL SUITE工具与jar包:
https://pan.baidu.com/s/1oN8grM3jkbGoLx2FNHZdGw 密码:7nqn
初学Sping可以关注尚硅谷—佟刚老师,个人觉得讲得通俗易懂。