SSM框架03:Spring相关API
Posted 黑马程序员官方
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SSM框架03:Spring相关API相关的知识,希望对你有一定的参考价值。
↑↑Java语法基础 —> 小型项目练习 —> mysql 更多学习内容均更新在专栏了,记得关注专栏哦 ↑↑
- 🍬JDBC:从CRUD开始,理解JDBC中的各个对象作用,掌握Druid的使用
- 🍬Maven从安装到手把手教学进行项目管理
- 🍬MyBatis完成代理方式查询数据以及核心文件配置、
- 🍬Mybatis:使用映射配置文件实现CRUD操作,能够使用注解实现CRUD操作
- 🍬Git学习第一天:了解Git基本概念
- 🍬Git第二天:Git安装与常用命令
- 🍬Git第三天:搭建Git远程仓库,并学会基本操作
- 🍬Git第四天:在IDEA中使用Git
- 🍬SSM框架02:从0-1学习Spring配置文件
文章目录
一、ApplicationContext的继承体系
applicationContext:接口类型,代表应用上下文,可以通过其实例获得 Spring 容器中的 Bean 对象
二、ApplicationContext的实现类
1)ClassPathXmlApplicationContext
它是从类的根路径下加载配置文件 推荐使用这种
2)FileSystemXmlApplicationContext
它是从磁盘路径上加载配置文件,配置文件可以在磁盘的任意位置。
3)AnnotationConfigApplicationContext
当使用注解配置容器对象时,需要使用此类来创建 spring 容器。它用来读取注解。
三、getBean()方法使用
public Object getBean(String name) throws BeansException
assertBeanFactoryActive();
return getBeanFactory().getBean(name);
public <T> T getBean(Class<T> requiredType) throws BeansException
assertBeanFactoryActive();
return getBeanFactory().getBean(requiredType);
其中,当参数的数据类型是字符串时,表示根据Bean的id从容器中获得Bean实例,返回是Object,需要强转。
当参数的数据类型是Class类型时,表示根据类型从容器中匹配Bean实例,当容器中相同类型的Bean有多个时,则此方法会报错。
ApplicationContext applicationContext = new
ClassPathXmlApplicationContext("applicationContext.xml");
UserService userService1 = (UserService)
applicationContext.getBean("userService");
UserService userService2 = applicationContext.getBean(UserService.class);
四、Spring的重点API
ApplicationContext app = new ClasspathXmlApplicationContext("xml文件")
app.getBean("id")
app.getBean(Class)
以上是关于SSM框架03:Spring相关API的主要内容,如果未能解决你的问题,请参考以下文章
04_SSM框架整合(Spring+SpringMVC+MyBatis)
阶段3 3.SpringMVC·_07.SSM整合案例_03ssm整合之编写Spring框架