spring学习历程
以下内容,是在学习spring时的记录,希望对你有所帮助,后续持续更新!记得点赞奥!!!
spring中的三种配置方式
1.在spring的配置文件中配置 ,即xml配置,真实开发中使用较多
2.在java中配置,编写配置类,主流的开发使用
3.隐式的自动装配bean,常用的 注解开发,便利高效
spring注解开发
1.导入约束(前期建议官网查询,后期根据导入内容变化,修改对应的连接即可,见下文提示)
xmlns="http://www.springframework.org/schema/*beans*"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/*context*"
xsi:schemaLocation="http://www.springframework.org/schema/*beans*
https://www.springframework.org/schema/beans/spring-*beans*.xsd
http://www.springframework.org/schema/*context*
https://www.springframework.org/schema/context/spring-*context*.xsd"
2.配置注解支持
<context:annotation-config/>
3.导入context依赖 增加注解开发支持,
xmlns:context="http://www.springframework.org/schema/context"
http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd"
(idea支持自动导入,快捷键Alt+Enter)
本次先介绍四个常用配置的区别:
@Autowired
通过反射实现,使用在类中的属性上,可以不用写属性的set方法 ,符合byName的规则,结合@Qualifier(value="") 使用,用于指定xml配置里的配置bean标签
装配方式 类型 名字
@Autowired
@Qualifier(value = "cat11")
private Cat cat;
对应xml里的配置:
<bean id="cat11" class="com.zzy.pojo.Cat"/>
@Resource
功能比@Autowired的更加全面,效率稍微差点,这是java配置类配置使用多哦,后期学习springboot中会出现大量的该注解,参照注解源码
装配方式 名字 类型
@Component
组件 放在类上面 说明这个类被spring管理了 相当于bean
@Configuration
完全使用java配置
使用该注解相当于在xml配置文件中添加了一个bean,理解即可,不必深究,就这个作用,记住他,记住他,记住他,重要的事情说三遍!!!
将两个配置类配置到同一个配置类中
需要适应@Import注解 通过类文件反射引入
@Configuration
@ComponentScan("com.zzy.pojo")
@Import(MyConfigImport.class)
public class MyConfig {
@Bean
public User getUser(){
return new User();
}
}
感谢您的查阅,点个赞,希望大家也写写博客,记录学习历程,记录自己的成长轨迹!!!