学习进程
第一篇博客
spring
2020-7-14
spring的底层实现是通过一个工厂类factory帮助方法获得实例,从而实现解耦。
一、spring可以通过配置XML的方法来创建spring
1.使用默认构造函数创建
在spring的配置文件中使用bean标签,配以id和class属性之后,且没有其他其他属性和标签时。
采用的就是默认构造函数创建bean对象,此时如果类中没有默认构造函数,则对象无法创建
<bean id="accountService" class="com.itheima.service.impl.AccountServiceImpl"></bean>
2.使用普通工厂中的方法创建对象(使用某个类中的方法创建对象,并存入spring容器)
<bean id="instanceFactory" class="com.itheima.factory.InstanceFactory"></bean>
或者
<bean id="accountService" factory-bean="instanceFactory" factory-method="getAccountService"></bean>
3.使用工厂中的静态方法创建对象(使用某个类中的静态方法创建对象,并存入spring容器)
<bean id="accountService" class="com.itheima.factory.StaticFactory" factory-method="getAccountService"></bean>
二、bean对象的生命周期
单例对象:
出生:当容器创建时,对象出生
活着:只要容器还在,对象一直活着
死亡:容器销毁,对象消亡
总结:单例对象的生命周期和容器相同
XML文件中的配置:
<bean id="accountService" class="com.itheima.service.impl.AccountServiceImpl"
scope="singleton" init-method="init" destroy-method="destroy"></bean>
多例对象:
出生:当我们 使用 对象时spring框架为我们创建
活着:对象只要时在使用过程中就一直或者
死亡:当对象长时间不用且没有别的对象引用时,由java的垃圾回收器回收
XML文件中的配置:
<bean id="accountService" class="com.itheima.service.impl.AccountServiceImpl"
scope="prototype" init-method="init" destroy-method="destroy"></bean>
2020-7-15
三、Spring的依赖注入
依赖注入:
Dependency Injection
IOC的作用:
降低程序间的耦合(依赖关系)
依赖关系的管理:
以后都交给了spring来维护
在当前类中需要用到其他类的对象,由spring为我们提供,我们只需要在配置文件中说明
依赖关系的维护:
就称之为依赖注入。
依赖注入:
能注入的数据:有三类
基本类型和String
其他bean类型(在配置文件中或者注释配置过的bean)
注入的方式:有三种
第一种:使用构造函数提供
第二种:使用set方法提供
第三种:使用注释提供
1)构造函数注入
使用的标签:constructor-arg
标签出现的位置:bean标签的内部
标签中的属性
type:用于指定要注入的数据类型,该数据类型也是构造函数中某个或某些参数的类型
index:用于指定要注入的数据给构造函数中指定索引位置的参数赋值。索引的位置是从0开始
name:用于指定给构造函数中指定名称的参数赋值 常用的
以上三个用于指定给构造函数中哪个参数赋值
value:用于提供基本类型和String类型的数据
ref:用于指定其他的bean类型数据,它指的就是在spring的IoC核心容器中出现过的bean对象
优势:
在获取bean对象时,注入数据是必须的操作,否则对象无法创建成功。
弊端:
改变了bean对象的实例化方式,使我们在创建对象时,如果用不到这些数据,也必须提供。
XML文件中的配置:
<bean id="accountService" class="com.itheima.service.impl.AccountServiceImpl">
<constructor-arg name="name" value="泰斯特"></constructor-arg>
<constructor-arg name="age" value="18"></constructor-arg>
<constructor-arg name="birthday" ref="now"></constructor-arg>
</bean>
<!--配置一个日期对象(用于提供ref使用)-->
<bean id="now" class="java.util.Date"></bean>
2)set方法注入(前提是在指定的类中要有set方法)
AccountServiceImpl类中的set方法:
public class AccountServiceImpl3 implements IAccountService {
private String [] myStrs;
private List<String> myList;
private Set<String> mySet;
private Map<String,String> myMap;
private Properties myProps;
public void setMyStrs(String[] myStrs) {
this.myStrs = myStrs;
}
public void setMyList(List<String> myList) {
this.myList = myList;
}
public void setMySet(Set<String> mySet) {
this.mySet = mySet;
}
public void setMyMap(Map<String, String> myMap) {
this.myMap = myMap;
}
public void setMyProps(Properties myProps) {
this.myProps = myProps;
}
}
XML文件中的配置:
<bean id="accountService2" class="com.itheima.service.impl.AccountServiceImpl2">
<property name="name" value="TEST"></property>
<property name="age" value="21"></property>
<property name="birthday" ref="now"></property>
</bean>
3)复杂类型的注入/集合类型的注入
用于给List结构集合注入的标签:
list array set
用于给Map结构集合注入的标签:
map props
只要结构相同,标签可以互换(一般只需要记住list和map即可)
<bean id="accountService3" class="com.itheima.service.impl.AccountServiceImpl3">
<property name="myStrs">
<array>
<value>AAA</value>
<value>BBB</value>
<value>CCC</value>
</array>
</property>
<property name="myList">
<list>
<value>AAA</value>
<value>BBB</value>
<value>CCC</value>
</list>
</property>
<property name="mySet">
<set>
<value>AAA</value>
<value>BBB</value>
<value>CCC</value>
</set>
</property>
<property name="myMap">
<map>
<entry key="testA" value="aaa"></entry>
<entry key="testB">
<value>BBB</value>
</entry>
</map>
</property>
<property name="myProps">
<props>
<prop key="testC">ccc</prop>
<prop key="testD">ddd</prop>
</props>
</property>
</bean>
四、基于注解的IOC配置
简介:注解配置和上面的XML配置功能一样,只是形式不同;
实际开发中使用XML配置还是注解配置,看各个公司的使用习惯,所以我们需要掌握2种不同的方式。
曾经的xml文件配置方法:
<bean id="accountService" class="com.itheima.service.impl.AccountServiceImpl"
* scope="" init-method="" destroy-method="">
* <property name="" value="" / ref=""></property>
* </bean>
用于创建对象的
他们的作用就和xml配置文件中编写一个标签实现的功能是一样的
@Componant:
作用:用于把当前类对象存入spring容器中
属性:
value:用于指定bean的id。当我们不写时,他的默认值是当前类名,且首字母改小写。(如果只有一个value属性可省略)
@Controller:一般用在表现层
@Service:一般用在业务层
@Repository:一般用在持久层
以上三个注解他们的作用和属性与Component是一模一样。他们三个是spring框架为我们提供明确的三层使用的注解,使我们的三层对象更加清晰
@Service("accountService")
public class AccountServiceImpl implements IAccountService
{...}
@Repository("accountDao2")
public class AccountDaoImpl2 implements IAccountDao
{...}
用于注入数据的
他们的作用就和在xml配置文件中的bean标签中写一个标签时一样的
@AutoWired
作用:自动按照类型注入。只要容器中由唯一的一个bean对象类型和要注入的变量类型匹配,就可以注入成功
如果IOC容器中没有任何bean的类型和要注入的类型匹配,则报错。
如果IOC容器中有多个类型匹配时:按照名字匹配(?)
出现位置:
可以是变量上,也可以是方法上
细节:
在使用注解注入时,set方法不是必须的了。
@Service("accountService")
public class AccountServiceImpl implements IAccountService{
@Autowired
private IAccountDao accountDao;
...
}
@Qualifier:
作用:在按照类型注入的基础之上,再按照名称注入,它在给类成员注入时不能单独使用,但是在给方法参数注入时可以使用。
属性:
value:用于指定注入bean的id。
@Resource:
作用:直接按照bean的id注入。它可以独立使用
属性:
name:用于指定bean的id。
以上三个注入都只能注入其它bean类型的数据,而基本类型和String类型无法使用上述注解实现。
另外,集合类型的注入只能通过XML来实现。
@Value
作用:用于注入基本类型和String类型的数据
属性:
value:用于指定数据的值。它可以使用spring中的SpEL(也就是spring的el表达式)
SpeL的写法:${表达式}
//@Configuration
public class JdbcConfig {
@Value("${jdbc.driver}")//jdbc.driver=?在properties文件中写好了
private String driver;
@Value("${jdbc.url}")
private String url;
@Value("${jdbc.username}")
private String username;
@Value("${jdbc.password}")
private String password;
...
}
用于改变作用范围的
他们的作用就和在bean标签中使用scope属性实现的功能时一样的
Scope
作用:用于指定bean的作用范围
属性:
value:指定范围的取值。常用取值:singleton prototype
@Service("accountService")
@Scope("singleton")
public class AccountServiceImpl implements IAccountService{
...
}
***和生命周期相关的 *** *(了解即可)
他们的作用就和在bean标签中使用init-method和destroy-method的作用是一样的
PreDestroy
作用:用于指定销毁方法
PostConstruct
作用:用于指定初始化方法
以上操作仍需要在bean.xml文件中配置部分属性
以下操作可以通过创建一个配置类SpringConfiguration来代替bean.xml
SpringConfiguration.java
package config;
import org.springframework.context.annotation.*;
/**
* 该类是一个配置类,它的作用和bean.xml是一样的
* spring中的新注解
* @Configuration
* 作用:指定当前类是一个配置类
* 细节:当配置类作为AnnotationConfigApplicationContext对象创建的参数时,该注解可以不写。
* @ComponentScan
* 作用:通过注解指定Srping在创建容器时要扫描的包
* 属性:
* value:它和basePackages的作用是一样的,都是用于指定创建容器时要扫描的包。
* 我们使用此注解就等同于在xml中配置了:
* <context:component-scan base-package="com.itheima"></context:component-scan>
* @Bean
* 作用:把当前方法的返回值作为Bean对象存入spring的ioc容器中
* 属性:
* name:用于指定bean的id。当不写时,默认值是当前方法的名称
* 细节:
* 当我们使用注解配置方法是,如果方法有参数,spring框架会去容器中查找有没有可用的bean对象。
* 查找的方式和Autowired注解的作用是一样的
* @Import
* 作用:用于导入其他的配置类
* 属性:
* value:用于指定其他配置类的字节码。
* 当我们使用import的注释之后,有Import注解的类就是父配置类,而导入的都是子配置类
* @PropertySource
* 作用:用于指定properties文件的位置
* 属性:
* value:指定文件的名称和路径
* 关键字:classpath:表示类路径下
*/
@Configuration
@ComponentScan(basePackages = {"com.itheima"})//basePackages可以省略
@Import(JdbcConfig.class)
@PropertySource("classpath:jdbcConfig.properties")
public class SpringConfiguration {
}
JdbcConfig.java
package config;
import com.mchange.v2.c3p0.ComboPooledDataSource;
import org.apache.commons.dbutils.QueryRunner;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Scope;
import javax.sql.DataSource;
/**
* 和spring连接数据库相关的配置类
*/
//@Configuration
public class JdbcConfig {
@Value("${jdbc.driver}")
private String driver;
@Value("${jdbc.url}")
private String url;
@Value("${jdbc.username}")
private String username;
@Value("${jdbc.password}")
private String password;
/**
* 用于创建一个QueryRunner对象
* @param dataSource
* @return
*/
@Bean(name = "runner")
@Scope("prototype")
public QueryRunner creatQueryRunner(DataSource dataSource){
return new QueryRunner(dataSource);
}
/**
* 创建数据源对象
* @return
*/
@Bean(name = "dataSource")
public DataSource createDataSource(){
try {
ComboPooledDataSource ds = new ComboPooledDataSource();
ds.setDriverClass(driver);
ds.setJdbcUrl(url);
ds.setUser(username);
ds.setPassword(password);
return ds;
}catch (Exception e){
throw new RuntimeException(e);
}
}
}
本文地址:https://blog.csdn.net/jishenwei/article/details/107329271
上一篇: 如何用python批量生成真实的手机号码