> applicationContext.xml中配置 bean标签
>
> 编码:创建工厂,从工厂中获取对象
-
Spring中属性注入
- 简单类型(基本类型+包装类+String)
<bean id="标识名" class="全类名"> <property name="属性"> <value>值</value> </property> <property name="属性" value="值"/> </bean>
- 简单类型(基本类型+包装类+String)
-
对象类型
<bean?id="a"?class="Address的全类名"> ?<property?name="属性1"?value="值1"/>??? ?<property?name="属性2"?value="值2"/></bean><bean?id="p"?class="Person全类名"> ?<property?name="addr">??? ??<ref?bean="a"/>?? ??</property> </bean> <bean?id="p2"?class="Person全类名">?<property?name="addr"?ref="a"/> </bean>
-
数组+List+Set
- Map+Properties
-
1 注入补充
1.1 null值
当需要显式的为属性赋值为 null
时,通过 null标签完成。
<bean?id="u"?class="com.bcl.entity.User">??
??<constructor-arg?value="1"?index="0"/>??
??<constructor-arg?value="xiaohei"?index="1"/>??
??<constructor-arg?index="2"><null/></constructor-arg>
</bean>
1.2 内部bean
<bean?id="a"?class="com.bcl.entity.Address">
????<property?name="street"?value="文化路"/>
????<property?name="city"?value="硅谷"/>
</bean>
<bean?id="p"?class="com.bcl.entity.Person">
????<property?name="personId"?value="1"/>
????<property?name="personName"?value="xiaohei"/>
????<property?name="addr"?ref="a"/>
</bean>
可以使用内部bean替换的写法
<bean?id="p"?class="com.bcl.entity.Person">
????<property?name="personId"?value="1"/>
????<property?name="personName"?value="xiaohei"/>
????<property?name="addr"?>
????????<bean?class="com.bcl.entity.Address">
????????????<property?name="city"?value="郑州"/>
????????????<property?name="street"?value="文化路"/>
????????</bean>
????</property>
</bean>
2 FactoryBean技术(创建复杂对象)
2.1 FactoryBean引言
Spring工厂要管理程序中各种种类的对象。
2.2 FactoryBean的开发步骤
- 编码 实现FactoryBean接口
public?class?ConnectionFactoryBean?implements?FactoryBean<Connection>?{ ????@Override ????//返回复杂对象 ????public?Connection?getObject()?throws?Exception?{ ????????//1?加载驱动 ????????Class.forName("com.mysql.jdbc.Driver"); ????????//2?建立连接 ????????String?url="jdbc:mysql://localhost:3306/bcl2002?useUnicode=true&characterEncoding=utf8"; ????????String?username="root"; ????????String?password="root"; ????????Connection?conn?=?DriverManager.getConnection(url,?username,?password); ????????return?conn; ????} ????@Override ????//返回复杂对象的类型 ????public?Class<?>?getObjectType()?{ ????????return?Connection.class; ????} @Override ????//复杂对象是否单例??true:单例??false:多例 ????public?boolean?isSingleton()?{ ????????return?true; ????} }
- 配置
<!--?配置factoryBean的全类名, 根据id:conn获取到是Connection对象--> <bean?id="conn"?class="com.bcl.factory.ConnectionFactoryBean"/>
注意:
- 根据id获取到的复杂对象,不是FactoryBean
- 可以根据&id获取到FactoryBean
- 复杂对象的单例与否,只与isSingleton方法有关
3 Spring中对象的生命周期(了解)
生命周期: 从生到死的过程。
-
多例时 (scope="prototype")
对象在getBean时创建
- 单例时(scope="singleton")
对象在工厂创建时随之创建 ?初始化:init-method:对象创建后,执行1次方法 ?销毁:destroy-method:对象销毁时,执行1次的方法 对象在工厂关闭时销毁
4 Spring配置文件分析
4.1 Spring配置文件的拆分
应用复杂时,需要将配置文件拆分成多个小的配置文件,放置到不同模块,最后在总配置文件中通过import
标签引入其它的小配置文件。
<import?resource="classpath:a/applicationContext-a.xml"/>
<import?resource="classpath:b/applicationContext-b.xml"/>
4.2 Spring 中xsd文件
xsd(XML Schema Definition)文件,规定了一个xml可以使用哪些标签、哪些属性,以及它们的顺序。
-
xsd的基本使用
使用xsd文件,要配置xsd的命名空间,以及文件路径对。
-
在一个xml中使用多个xsd
- 示例:
4.3 Spring配置文件中拆分jdbc.properties
-
抽取jdbc.properties
jdbc.driverClassName=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://localhost:3306/bcl2002?useUnicode=true&characterEncoding=utf8 jdbc.username=root jdbc.password=root
-
读取配置文件
<context:property-placeholder?location="classpath:jdbc.properties"/>
- 使用jdbc.properties中的参数
<bean?id="conn"?class="com.bcl.factory.ConnectionFactoryBean"> ????<property?name="driverClassName"?value="${jdbc.driverClassName}"/> ????<property?name="url"?value="${jdbc.url}"/> ????<property?name="username"?value="${jdbc.username}"/> ????<property?name="password"?value="${jdbc.password}"/> </bean>
注意:${username}
会优先读取操作系统用户名,可以给参数添加前缀进行区分。
5 Spring IOC和DI
IOC(Inversion Of Control)控制反转 (思想)
DI(Dependency Injection)依赖注入 (实现手段)
控制:对于对象属性赋值的控制权力。
正向控制的问题:强耦合。
解决方案:控制反转。
结论:要解耦合,就不要new,转为在spring配置文件中通过配置的方式由工厂创建对象。
6 Spring整合Struts2
准备工作:创建好一个可运行的struts2项目。
6.1 整合效果
Spring整合Struts2的效果:由Spring工厂创建Struts2需要的Action和Service.
6.2 实战
导入spring-web
依赖
<dependency>
????<groupId>org.springframework</groupId>
????<artifactId>spring-web</artifactId>
????<version>4.3.26.RELEASE</version>
</dependency>
<dependency>
????<groupId>org.apache.struts</groupId>
????<artifactId>struts2-spring-plugin</artifactId>
????<version>2.3.16.3</version>
</dependency>
-
tomcat启动应用时,自动创建Spring工厂
web.xml
<context-param> ????<param-name>contextConfigLocation</param-name> ????<param-value>classpath:applicationContext.xml</param-value> </context-param> <listener> ????<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener>
-
Struts2从Spring工厂中获取Action
applicationContext.xml
<bean?id="userService"?class="com.bcl.service.impl.UserServiceImpl"/> <bean?id="userAction"?class="com.bcl.action.UserAction"?scope="prototype">
感受:
其实我投简历的时候,都不太敢投递阿里。因为在阿里一面前已经过了字节的三次面试,投阿里的简历一直没被捞,所以以为简历就挂了。
特别感谢一面的面试官捞了我,给了我机会,同时也认可我的努力和态度。对比我的面经和其他大佬的面经,自己真的是运气好。别人8成实力,我可能8成运气。所以对我而言,我要继续加倍努力,弥补自己技术上的不足,以及与科班大佬们基础上的差距。希望自己能继续保持学习的热情,继续努力走下去。
也祝愿各位同学,都能找到自己心动的offer。
分享我在这次面试前所做的准备(刷题复习资料以及一些大佬们的学习笔记和学习路线),都已经整理成了电子文档,需要的朋友可以【点赞+关注】戳这里即可免费获取
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/123164.html