博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring EL hello world实例
阅读量:6239 次
发布时间:2019-06-22

本文共 2094 字,大约阅读时间需要 6 分钟。

Spring EL与OGNL和JSF EL相似,计算评估或在bean创建时执行。此外,所有的Spring表达式都可以通过XML或注解。
在本教程中,我们将学习如何使用Spring表达式语言(SpEL),注入字符串,整数,Bean到属性,无论是在XML和注释。

1. Spring Beans

两个简单Bean,后来利用 SpEL 注入值到属性,在 XML 和 注释。
package com.yiibai.core;public class Customer {	private Item item;	private String itemName;}
package com.yiibai.core;public class Item {	private String name;	private int qty;}

3. Spring EL以XML形式

使用 SpEL关闭的#{ SpEL expression }括号,请参阅XML bean定义文件下面的例子。
  1. #{itemBean} – 注入“itemBean”到“customerBean”Bean 的“item”属性。
  2. #{itemBean.name} – 注入“itemBean”的“name”属性到 “customerBean" bean的"itemname”属性。

4. Spring EL以注解形式

请参阅等效版本注释模式。
要在注解使用使用SpEL,必须通过注解注册您的组件。如果注册bean在XML和Java类中定义@Value,该@Value将无法执行。
package com.yiibai.core;import org.springframework.beans.factory.annotation.Value;import org.springframework.stereotype.Component;@Component("customerBean")public class Customer {	@Value("#{itemBean}")	private Item item;	@Value("#{itemBean.name}")	private String itemName;	//...}
package com.yiibai.core;import org.springframework.beans.factory.annotation.Value;import org.springframework.stereotype.Component;@Component("itemBean")public class Item {	@Value("itemA") //inject String directly	private String name;	@Value("10") //inject interger directly	private int qty;	public String getName() {		return name;	}	//...}
启用自动组件扫描。
在注解模式下,可以使用@Value定义Spring EL。在这种情况下,一个String和Integer值直接注入到“itemBean”,之后又注入“itemBean”到“customerBean”属性。

5. 执行输出

运行它,无论是使用 SpEL在XML 还是注释都显示了同样的结果:
package com.yiibai.core;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;public class App {	public static void main(String[] args) {	    ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");	    Customer obj = (Customer) context.getBean("customerBean");	    System.out.println(obj);	}}

输出结果

Customer [item=Item [name=itemA, qty=10], itemName=itemA]
下载代码 – 
本文转自左正博客园博客,原文链接:http://www.cnblogs.com/soundcode/p/6367423.html,如需转载请自行联系原作者
你可能感兴趣的文章
享元模式
查看>>
Tornado 5.1渲染模板
查看>>
PDF转换成Word确保内容排版和转换质量
查看>>
一些关于写Java代码的建议
查看>>
关于使用 dup2 函数重定向的一些疑问
查看>>
使用python语言操作MongoDB
查看>>
直连和静态
查看>>
javascript学习记录-数组(4) 2014/02/21
查看>>
HAProxy安装使用
查看>>
Serving websites from svn checkout considered harmful
查看>>
Java中Split函数的用法技巧
查看>>
iOS
查看>>
xenserver introduce “Local Storage”
查看>>
25万个虚拟机的实验环境 -VMworld 2011 动手实验室内幕曝光
查看>>
Supporting Python 3——不使用2to3转换支持Python 2和Python 3
查看>>
分布式存储系统MogileFS(一)之基本概念
查看>>
Zabbix宏使用及用户自定义监控
查看>>
网络社交如何保护个人隐私?做好这4步
查看>>
mysqlbinlog 命令筛选时间段某表操作记录
查看>>
python 简单擦错误记录
查看>>