Spring零基础入门IOC

目录

  • 1.HelloSpring
  • 2.IOC创建对象方式
    • 2.1.通过无参构造方法来创建
    • 2.2.通过有参构造方法来创建

1.HelloSpring 导入Jar包
org.springframeworkspring-webmvc5.2.0.RELEASE

1、编写一个Hello实体类
public class Hello {private String str; public Hello(String str) {this.str = str; }public Hello() {}public String getStr() {return str; }//set方法是核心public void setStr(String str) {this.str = str; }@Overridepublic String toString() {return "Hello{" +"str='" + str + '\'' +'}'; }}

2、编写我们的spring文件 , 这里我们命名为beans.xml

3、我们可以去进行测试了 .
public class MyTest {public static void main(String[] args) {ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml"); Object hello = context.getBean("hello"); System.out.println(hello.toString()); }}

思考
  • Hello 对象是谁创建的 ? hello 对象是由Spring创建的
  • Hello 对象的属性是怎么设置的 ? hello 对象的属性是由Spring容器设置的
这个过程就叫控制反转 :
  • 控制 : 谁来控制对象的创建 , 传统应用程序的对象是由程序本身控制创建的 , 使用Spring后 , 对象是由Spring来创建的
  • 反转 : 程序本身不创建对象 , 而变成被动的接收对象 .
依赖注入 : 就是利用set方法来进行注入的.
IOC是一种编程思想,由主动的编程变成被动的接收
可以通过newClassPathXmlApplicationContext去浏览一下底层源码 .
修改案例一
我们在案例一中, 新增一个Spring配置文件beans.xml

测试!
import com.hc.dao.UserDaoMysqlImpl; import com.hc.dao.UserDaoOracleImpl; import com.hc.dao.UserDaoSqlserverImpl; import com.hc.service.UserService; import com.hc.service.UserServiceImpl; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import sun.security.mscapi.CPublicKey; /** * @author HC * @version 1.0 */public class MyTest {public static void main(String[] args) {//用户调用的是业务层,dao层他们不需要接触!//UserServiceImpl userService = new UserServiceImpl(); //userService.setUserDao(new UserDaoSqlserverImpl()); //userService.setUserDao(new UserDaoOracleImpl()); //userService.getUser(); ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml"); UserServiceImpl userServiceImpl = (UserServiceImpl) context.getBean("UserServiceImpl"); userServiceImpl.getUser(); }}

OK , 到了现在 , 我们彻底不用再程序中去改动了 , 要实现不同的操作 , 只需要在xml配置文件中进行修改 , 所谓的IoC,一句话搞定 : 对象由Spring 来创建 , 管理 , 装配 !

2.IOC创建对象方式
2.1.通过无参构造方法来创建
通过无参构造方法来创建
1、User.java
public class User {private String name; public User(String name) {this.name = name; }//public User() {//}public String getName() {return name; }public void setName(String name) {this.name = name; }public void show(){System.out.println("name="+getName()); }@Overridepublic String toString() {return "User{" +"name='" + name + '\'' +'}'; }}

2、beans.xml

【Spring零基础入门IOC】3、测试类
public class MyTest {public static void main(String[] args) {// User user = new User(); ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml"); //User user1 = (User) context.getBean("user"); // User user1 = (User) context.getBean("ccccccccccccccccc"); UserT user4 = (UserT) context.getBean("u2"); // User user2 = (User) context.getBean("user"); user4.show(); //System.out.println(user1==user2); }}

结果可以发现,在调用show方法之前,User对象已经通过无参构造初始化了!

2.2.通过有参构造方法来创建
通过有参构造方法来创建
1、UserT . java
public class UserT {private String name; public UserT() {System.out.println("UserT被创建了"); }public String getName() {return name; }public void setName(String name) {this.name = name; }public void show(){System.out.println("name="+getName()); }}

2、beans.xml 有三种方式编写

3、测试
public class MyTest {public static void main(String[] args) {// User user = new User(); ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml"); //User user1 = (User) context.getBean("user"); // User user1 = (User) context.getBean("ccccccccccccccccc"); UserT user4 = (UserT) context.getBean("u2"); // User user2 = (User) context.getBean("user"); user4.show(); //System.out.println(user1==user2); }}

结论:在配置文件加载的时候。其中管理的对象都已经初始化了!
到此这篇关于Spring零基础入门IOC的文章就介绍到这了,更多相关Spring IOC内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    推荐阅读