Spring初步,配置及标签。

摘要:插件配置,bean,初步标签使用。

1.eclipse插件配置

在这里插入图片描述

2.新建lib导入的包Spring依赖的jar包

在这里插入图片描述
第一个为日志
后四个再SpringFramework源码下的spring-framework-X.X.X.RELEASE\libs包下.
后面的为依赖包

配置bean

<!-- 配置bean -->
	<bean id="helloword" class="com.spring.beans.Helloword">
	<!-- name 对应setget方法名后的单词,值赋给spring -->
	<property name="name2" value="spring"></property>
  • 作用为绑定包下的Helloword类,命名为helloword,并且调用该类中的set方法,将value值赋予name2,即等同于setName2();
  • 类中必须要有无参的构造方法

main中实现

话不多说,先上代码再解释

	//1.创建spring的ioc容器对象
	//ApplicationContext代表Ioc容器
	// ClassPathXmlApplicationContext是ApplicationContext的接口实现类,该实现类从类路径下来加载配置文件
	ApplicationContext cts=new ClassPathXmlApplicationContext("applicationContext.xml");
	//2.从ioc容器中获取bean方法,从这里获取id,绑定bean,id唯一
	Helloword helloword=(Helloword)cts.getBean("helloword");
	//其等同于Helloword helloword=cts.getBean("Helloword。class");,但是用该方式时要求类中bean唯一,利用类型返回,不推荐使用
	helloword.hellow();//类中的hellow方法为打印name

在这里插入图片描述

注入

  • 属性注入,用set方法,最常用

  • 构造方法注入
    在这里插入图片描述
    依次为构造方法中的属性赋值。

  • 可以通过参数的位置和类型来区分重载的构造区

  • 也可以使用value子节点赋值

  • 一个bean中引用其他bean,ref指向被引用的bean(引用外部bean)

<!-- 可以使用property的ref属性建立bean之间的引用关系 -->
	<property name="helloword" ref="helloword"></property>
  • 内部bean的引用,包裹在 property子标签中` ,内部bean不能被外部bean引用,只能再内部使用
<property>
   <bean>
   </bean>
</property`>
  • 可以给需要引用的赋值(级联属性)
    注意:属性需要先初始化后,再为级联属性复制,否则异常,和struts2不同
	<property name="helloword。name" ref="helloword"></property>
  • bean中为list集合的对象赋值

在这里插入图片描述

  • 其中car对象在people类中引用时一个list集合

  • map键值对类似
    在这里插入图片描述

配置propeties

  • 1.导入java.util.properties包

  • 2.创建一个properties类型的对象

  • 3.为其赋值
    在这里插入图片描述

  • bean–util:list

  • 在这里插入图片描述

  • 引入新的命名空间 p属性
    在这里插入图片描述
    可以用来代替上述property标签,比其传统的配置方式更加简洁

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

鱼雨羽

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值