. 4 + 1 : 4个核心(beans、core、context、expression) + 1个依赖(commons-loggins…jar)
. 提供UserService接口和实现类
. 获得UserService实现类的实例
之前开发中,直接new一个对象即可。
学习spring之后,将由Spring创建对象实例--> IoC 控制反转(Inverse of ControlIOC创建对象的权限由自己反转给了spring)
之后需要实例对象时,从spring工厂(容器)中获得,需要将实现类的全限定名称配置到xml文件中
public interface UserService {
public void addUser();
}
public class UserServiceImpl implements UserService {
public void addUser() {
System.out.println("a_ico add user");
}
}
.位置:任意,开发中一般在classpath下(src)
.名称:任意,开发中常用applicationContext.xml(在公司中看见项目里有这个名肯定就是用了spring)
.内容:添加schema约束
约束文件位置:spring-framework-3.2.0.RELEASE\docs\spring-framework-reference\html\ xsd-config.html
<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">
public class TestIoc {
/**
@Test
public void demo01() {
//之前的开发
UserService userService=new UserServiceImpl();
userService.addUser();
} **/
public void demo02() {
//从spring容器获得
//1 获得 容器
String xmlPath="com/itheima/a_ioc/beans.xml";
ApplicationContext applicationContext=new ClassPathXmlApplicationContext(xmlPath);
//2 获得内容(不需要自己new,都是从spring容器中获得)
UserService userService=(UserService) applicationContext.getBean("userServiceId");
userService.addUser();
}
}
. DI Dependency Injection ,依赖注入
is a :是一个,继承。
has a:有一个,成员变量,依赖(拥有使用权)。
class B {
private A a; //B类依赖A类
}
依赖:一个对象需要使用另一个对象
注入:通过setter方法进行另一个对象实例设置。
. 例如:
class BookServiceImpl{
//之前开发:接口 = 实现类 (service和dao耦合)
//private BookDao bookDao = new BookDaoImpl();
//spring之后 (解耦:service实现类使用dao接口,不知道具体的实现类)
private BookDao bookDao;
setter方法
}
模拟spring执行过程
创建service实例:BookService bookService = new BookServiceImpl() -->IoC
创建dao实例:BookDao bookDao = new BookDaoImpl() -->IoC
将dao设置给service:bookService.setBookDao(bookDao); -->DI
.创建BookService接口和实现类
. 创建BookDao接口和实现类
.将dao和service配置 xml文件
.使用api测试
public interface BookDao {
public void addBook();
}
public class BookDaoImpl implements BookDao {
public void addBook() {
System.out.println("di add book");
}
}
public interface BookService {
public abstract void addBook();
}
public class BookServiceImpl implements BookService {
// 方式1:之前,接口=实现类
// private BookDao bookDao = new BookDaoImpl();
// 方式2:接口 + setter
private BookDao bookDao;
public void setBookDao(BookDao bookDao) {
this.bookDao = bookDao;
}
public void addBook(){
this.bookDao.addBook();
}
}
<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 id="bookServiceId" class="com.itheima.b_di.BookServiceImpl">
public void demo01(){
//从spring容器获得
String xmlPath = "com/itheima/b_di/beans.xml";
ApplicationContext applicationContext = new ClassPathXmlApplicationContext(xmlPath);
BookService bookService = (BookService) applicationContext.getBean("bookServiceId");
bookService.addBook();
}
手机扫一扫
移动阅读更方便
你可能感兴趣的文章