Spring全回顾之p命名空间

创建一个类Person

package com.kk.spring.beans.collections;

import java.util.List;

import com.kk.spring.beans.Car;

public class Person {

    private String name;
    private int age;
    private List<Car> cars;

    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public int getAge() {
        return age;
    }
    public void setAge(int age) {
        this.age = age;
    }
    public List<Car> getCars() {
        return cars;
    }
    public void setCars(List<Car> cars) {
        this.cars = cars;
    }

    @Override
    public String toString() {
        return "Person [name=" + name + ", age=" + age + ", cars=" + cars + "]";
    }


}

Car类创建,参照[Spring全回顾之构造方法注入值](https://blog.csdn.net/fx9590/article/details/80367518)
配置文件内容如下:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:util="http://www.springframework.org/schema/util"
    xmlns:p="http://www.springframework.org/schema/p"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.3.xsd">

    <!-- 配置单例的集合bean,以供多个bean 进行调用 ,需要导入util命名空间-->
    <util:list id="cars">
            <ref bean="car"/>
            <ref bean="car2"/>
    </util:list>

    <!-- 通过p命名空间为bean的属性赋值,需要导入p命名空间 ,相对于传统的配置方式更加简洁-->
    <bean id="person5"  class="com.kk.spring.beans.collections.Person" p:age="30" p:name="Queen" p:cars-ref="cars"></bean>
    </beans>

注意:需要导入p命名空间 [xmlns:p=”http://www.springframework.org/schema/p”]
写个测试类:


package com.kk.spring.beans.collections;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Test {
    ApplicationContext ctx = new ClassPathXmlApplicationContext("applicaContext.xml");
    public static void main(String[] args) {
            Person person = (Person) ctx.getBean("person5");
        System.out.println("person5:"+person);
    }

结果:
这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值