Spring实战——Bean定义中的SpEL表达式语言支持

一 配置

<?xml version="1.0" encoding="GBK"?>
<!-- 指定Spring配置文件的根元素和Schema
     导入p:命名空间和util:命名空间的元素 -->
<beans xmlns="http://www.springframework.org/schema/beans"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xmlns:p="http://www.springframework.org/schema/p"
     xmlns:util="http://www.springframework.org/schema/util"
     xsi:schemaLocation="http://www.springframework.org/schema/beans
     http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
     http://www.springframework.org/schema/util
     http://www.springframework.org/schema/util/spring-util-4.0.xsd">
     <!-- 使用util.properties加载指定资源文件 -->
     <util:properties id="confTest"
           location="classpath:test_zh_CN.properties"/>
     <!--
     配置setName()的参数时,在表达式中调用方法
     配置setAxe()的参数时,在表达式中创建对象
     配置调用setBooks()的参数时,在表达式中访问其他Bean的属性 -->
     <bean id="author"  class="org.crazyit.app.service.impl.Author"
           p:name="#{T(java.lang.Math).random()}"
           p:axe="#{new  org.crazyit.app.service.impl.SteelAxe()}"
           p:books="#{ {confTest.a , confTest.b} }"/>
</beans>

二 资源文件

a=\u300a\u8f7b\u91cf\u7ea7Java  EE\u4f01\u4e1a\u5e94\u7528\u5b9e\u6218\u300b
b=\u300a\u75af\u72c2Java\u8bb2\u4e49\u300b

三 接口

Axe

package org.crazyit.app.service;

public interface Axe
{
     String chop();
}

Person

package org.crazyit.app.service;
import java.util.*;

public interface Person
{
     public void useAxe();
     public List<String> getBooks();
     public String getName();
}

四 Bean

Author

package org.crazyit.app.service.impl;


import java.util.*;
import org.crazyit.app.service.*;

public class Author implements Person
{
    private Integer id;
    private String name;
    private List<String> books;
    private Axe axe;
    // id的setter和getter方法
    public void setId(Integer id)
    {
        this.id = id;
    }
    public Integer getId()
    {
        return this.id;
    }


    // name的setter和getter方法
    public void setName(String name)
    {
        this.name = name;
    }
    public String getName()
    {
        return this.name;
    }


    // books的setter和getter方法
    public void setBooks(List<String> books)
    {
        this.books = books;
    }
    public List<String> getBooks()
    {
        return this.books;
    }


    // axe的setter方法
    public void setAxe(Axe axe)
    {
        this.axe = axe;
    }


    public void useAxe()
    {
        System.out.println("我是"
            + name + ",正在砍柴\n" + axe.chop());
    }
}

SteelAxe 

package org.crazyit.app.service.impl;
import org.crazyit.app.service.*;

public class SteelAxe implements Axe
{
     public String chop()
     {
           return "钢斧砍柴很快!";
     }
}

五 测试类

package lee;


import org.springframework.context.*;
import org.springframework.context.support.*;


import java.util.*;


import org.crazyit.app.service.*;

public class SpELTest
{
    public static void main(String[] args)
    {
        ApplicationContext ctx = new
            ClassPathXmlApplicationContext("beans.xml");
        Person author = ctx.getBean("author" , Person.class);
        System.out.println(author.getBooks());
        author.useAxe();


    }
}

六 测试结果

[《轻量级Java EE企业应用实战》, 《疯狂Java讲义》]
我是0.06178107142599454,正在砍柴
钢斧砍柴很快!

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值