Spring安裝配置教程
1.Spring簡介
Spring是一個開放原始碼的設計層面框架,他解決的是業務邏輯層和其他各層的鬆耦合問題,因此它將面向介面的程式設計思想貫穿整個系統應用。Spring是於2003 年興起的一個輕量級的Java 開發框架,由Rod Johnson建立。簡單來說,Spring是一個分層的JavaSE/EE full-stack(一站式) 輕量級開源框架。
2002 Rod Johnon <Expoer One-on-one j2eedevelopment and Design>
Spring 2003 ,IOC Aop
Spring data,spring boot,spring cloud,spring framework ,spring social
IOC :控制反轉 (DI:依賴注入)
2.搭建Spring環境
下載jar
http://maven.springframework.org/release/org/springframework/spring/
spring-framework-4.3.9.RELEASE-dist.zip
開發spring至少需要使用的jar(5個+1個):
spring-aop.jar 開發AOP特性時需要的JAR
spring-beans.jar 處理Bean的jar
spring-context.jar 處理spring上下文的jar
spring-core.jar spring核心jar
spring-expression.jar spring表示式
三方提供的日誌jar
commons-logging.jar 日誌
2.編寫配置檔案
方式一:
為了編寫時有一些提示、自動生成一些配置資訊:
方式一:增加sts外掛
可以給eclipse增加 支援spring的外掛:spring tool suite(https://spring.io/tools/sts/all)
下載springsource-tool-suite-3.9.4.RELEASE-e4.7.3a-updatesite.zip,然後在Eclipse中安裝:Help-Install new SoftWare.. - Add
因為我的eclipse版本不高因為你下載時的sts版本需要對應你的eclipse外掛才有效,如果想要裝外掛的可以參考下面文章:
https://jingyan.baidu.com/article/2d5afd69208f8a85a2e28eb6.html
方式二:
直接下載sts工具(相當於一個集合了Spring tool suite的Eclipse): https://spring.io/tools/sts/
下載後會得到一個壓縮包,解壓後即可使用,
介面如eclipse一樣,並且裝上了sts外掛
首先,我們新建一個Java project
然後我們來配置xml檔案
新建:bean configuration .. - applicationContext.xml
3.開發Spring程式(IOC)
ApplicationContext conext = new ClassPathXmlApplicationContext(“applicationContext.xml”) ;
建立一個學生實體類以及測試類
Student.java
package entity;
public class Student {
private int stuNo;
private String stuName;
private int stuAge;
public int getStuNo() {
return stuNo;
}
public void setStuNo(int stuNo) {
this.stuNo = stuNo;
}
public String getStuName() {
return stuName;
}
public void setStuName(String stuName) {
this.stuName = stuName;
}
public int getStuAge() {
return stuAge;
}
public void setStuAge(int stuAge) {
this.stuAge = stuAge;
}
@Override
public String toString() {
// TODO Auto-generated method stub
return this.stuNo+","+this.stuName+","+this.stuAge;
}
}
Test.java
package test;
import entity.Student;
public class Test {
public static void main(String[] args) {
Student student = new Student();
student.setStuName("zs");
student.setStuAge(23);
student.setStuNo(001);
System.out.println(student);
}
}
現在我們使用Spring IOC方式來做
先到剛剛建立的xml來配置
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">
<!-- 該檔案中產生的所有物件,被spring放入到了一個springIOC的容器中 -->
<!-- id:唯一識別符號 class:指定型別 -->
<bean id = "student" class = "entity.Student">
<!-- property:該class所代表的類的屬性 -->
<property name="stuNo" value = "002"></property>
<property name="stuName" value = "ls"></property>
<property name="stuAge" value = "20"></property>
</bean>
</beans>
在對Test測試類進行修改
下面是springIOC容器的工作原理:
//執行從springIOC容器中獲取一個 id為student的物件
Student student = (Student)conext.getBean(“student”) ;
可以發現,springioc容器 幫我們new了物件,並且給物件賦了值