HelloSpring
作者:互联网
3. HelloSpring
3.1 导入Jar包
注 : spring 需要导入commons-logging进行日志记录 . 我们利用maven , 他会自动下载对应的依赖项 .
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.1.10.RELEASE</version>
</dependency>
3.2 编写代码
1、编写一个Hello实体类
package com.yhn.domain;
public class Hello {
private String str;
// 一定要有set方法
public void setStr(String str) {
this.str = str;
}
public String getStr() {
return str;
}
@Override
public String toString() {
return "Hello{" +
"str='" + str + '\'' +
'}';
}
}
2、编写我们的spring文件 , 这里我们命名为beans.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
https://www.springframework.org/schema/beans/spring-beans.xsd">
<!--bean就是java对象 , 由Spring创建和管理-->
<!--平常我们创建一个对象是
Hello hello = new Hello();
这里id可以理解为变量名 标识单个bean定义的字符串
class属性定义Bean的类型,并使用完全限定的类名。
给成员变量str 通过set方法设置值为Spring
-->
<bean id="hello" class="com.yhn.domain.Hello">
<property name="str" value="Spring"></property>
</bean>
</beans>
3、我们可以去进行测试了 .
import com.yhn.domain.Hello;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class MyTest {
public static void main(String[] args) {
// 得到上下文对象 解析beans.xml文件,获取实例化容器
// 生成管理相应的Bean对象
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
// 从实例化容器中获取Bean对象 getBean : 参数即为spring配置文件中bean的id
Hello hello = (Hello) context.getBean("hello");
System.out.println(hello);
}
}
3.3 思考
- Hello 对象是谁创建的 ? hello 对象是由Spring创建的
- Hello 对象的属性是怎么设置的 ? hello 对象的属性是由Spring容器设置的
这个过程就叫控制反转 :
- 控制 : 谁来控制对象的创建 , 传统应用程序的对象是由程序本身控制创建的 , 使用Spring后 , 对象是由Spring来创建的
- 反转 : 程序本身不创建对象 , 而变成被动的接收对象 .
依赖注入 : 就是利用set方法来进行注入的.
IOC是一种编程思想,由主动的编程变成被动的接收
可以通过newClassPathXmlApplicationContext去浏览一下底层源码 .
3.4 修改案例一
我们在案例一中, 新增一个Spring配置文件beans.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
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="DaoImpl" class="com.yhn.dao.UserDaoImpl"></bean>
<bean id="DaoMysqlImpl" class="com.yhn.dao.UserDaoMysqlImpl"></bean>
<bean id="DaoOracleImpl" class="com.yhn.dao.UserDaoOracleImpl"></bean>
<bean id="UserServiceImpl" class="com.yhn.service.UserServiceImpl">
<!--ref指的是另一个bean定义的名称
value指的是具体的值
-->
<property name="userDao" ref="DaoOracleImpl"></property>
</bean>
</beans>
测试!
// 用Spring容器去测试
@Test
public void test(){
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
UserServiceImpl userServiceImpl = (UserServiceImpl) context.getBean("UserServiceImpl");
userServiceImpl.getUser();
}
OK , 到了现在 , 我们彻底不用再程序中去改动了 , 要实现不同的操作 , 只需要在xml配置文件中进行修改 , 所谓的IoC,一句话搞定 : 对象由Spring 来创建 , 管理 , 装配 !
标签:xml,context,Spring,HelloSpring,public,str,Hello 来源: https://www.cnblogs.com/yhnCoder/p/13647732.html