下载开发包spring-tool-suite-3.9.7.RELEASE-e4.10.0-win32-x86_64,下载并导入spring-framework-5.1.4.RELEASE-dist对应的4个主要jar包和commons-logging-1.1.jar文件
编写代码(基础代码和调用代码)
编写配置文件
下载spring-tool-suite-3.8.3.RELEASE-e4.6.2-win32文件,这个需要安装eclipse上面,所以必须要选择和eclipse相对应的版本安装,如何查看eclipse版本号?我们打开eclipse,help-About Eclipse,点击第一个eclipse图标,可以看到eclipse Platform的版本号。
我们可以去http://spring.io/tools3/sts/legacy找到自己对应的eclipse版本的spring插件下载。
下载完成之后,打开eclipse,我们点击Help-install New Software,点击add,进入Add Repository界面,然后点击Archive...,选择刚才下载的spring-tool-suite-3.9.7.RELEASE-e4.10.0-win32-x86_64.zip文件路径点击确定(Name为空即可),然后勾选4个带Spring IDE的文件,点击下一步安装即可。
等待安装结束后,重启eclipse,Spring IDE就安装好了,会在软件欢迎界面显示spring IDE。
使用Spring框架,我们需要下载spring-framework-5.1.4.RELEASE-dist文件(只需要引入4个核心jar包)和commons-logging-1.1.jar包
Spring Framework各个版本下载:http://repo.spring.io/release/org/springframework/spring/
Spring任意版本都可以下载,不同版本之间的使用有部分差异,具体看官方api文档。
下载common-logging-1.1.jar包
下载完成之后,我们把Spring Framework的压缩文件解压,找到libs文件夹,在里面找到4个jar包如下图所示:
还有从百度网盘下载的common-logging-1.1.jar包,总共5个jar包,将这5个jar包复制好做准备待会用。
我们打开eclipse,新建一个java project文件,随便命名如spring-1.0,然后新建一个lib文件夹,将这5个复制好的jar包直接粘贴到lib文件夹中,如下图所示:
我们选定这5个jar包,然后右键,点击Build Path--Add to Build Path添加到Libraries即可。
此时,Spring框架就配置完成了。
例如:我们在src下新建一个包,随便命名,我把它命名为com.yorkmass.spring.beans,然后在包下面新建一个类,随便一个类,类名如HelloWorld,里面的代码如下:
package com.yorkmass.spring.beans;
public class HelloWorld {
private String name;
public void setName(String name){
System.out.println("setName:"+name);
this.name=name;
}
public void hello(){
System.out.println("hello:"+name);
}
public HelloWorld(){
System.out.println("HelloWorld's Constructor...");
}
}
在src下面我们还需要新建一个Spring配置文件(Spring Bean Configuration File),右键--New--other--找到Spring文件夹下面的Spring Bean Configuration File点击Next确定即可。
随便命名我们这里吧配置文件命名为applicationContext.xml
里面的代码如下:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<!-- 配置bean -->
<bean id="helloworld" class="com.yorkmass.spring.beans.HelloWorld">
<property name="name" value="nihao"></property>
</bean>
</beans>
我们再新建一个主类,随便命名这里我们命名为Main,Main里面的代码如下(可以自行去掉部分注释观察程序运行情况):
package com.yorkmass.spring.beans;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
/*
//创建HelloWorld的一个对象
HelloWorld helloworld=new HelloWorld();
为name属性赋值
helloworld.setName("test");
*/
//1.创建Spring的IOC容器对象
ApplicationContext ctx=new ClassPathXmlApplicationContext("applicationContext.xml");
/* //2.从IOC容器中获取Bean实例
HelloWorld helloworld=(HelloWorld)ctx.getBean("helloworld");
//3.调用hello方法
helloworld.hello();*/
}
}
以上代码程序运行结果如下图所示 :
以上就是极悦小编介绍的"Eclipse安装配置Spring框架",希望对大家有帮助,想了解更多可查看Java基础教程,如有疑问,请在线咨询,有专业老师随时为您服务。
你适合学Java吗?4大专业测评方法
代码逻辑 吸收能力 技术学习能力 综合素质
先测评确定适合在学习