Spring3.0 入门进阶(2):SPEL用法大全

2024-02-14 11:48

本文主要是介绍Spring3.0 入门进阶(2):SPEL用法大全,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Spring 已经盛行多年,目前已经处于3.0阶段,关于Spring的概念介绍性的东西网上已经很多,本系列博客主要是把一些知识点通过代码的方式总结起来,以便查阅.

作为入门,本篇主要介绍SPEL的使用.

SPEL(Spring Expression Language)是Spring 3引入的一个新特性,通过使用SPEL可以在程序运行的过程中,动态的对BEAN的属性进行赋值,话不多说,请看代码以及注释

入口类


package com.eric.introduce.spel;import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;/*** 主要用来演示SPEL的用法* * @author Eric* */
public class SpelCaller {private static final String CONFIG = "com/eric/introduce/spel/spel.xml";private static ApplicationContext context = new ClassPathXmlApplicationContext(CONFIG);public static void main(String[] args) {//下面的几个方法主要是和操作Bean相关getNormalValue();getOtherBeanProperties();callOtherBeanMethod();getOtherBeanPropertiesByCheckSafe();getPropertiesByStaticField();//下面的几个方法主要是和操作集合相关getPropertyFromList();getAddressFromListByRandom();getAddressFromMap();getPropertiesFromProperties();getCityListByCondiciton();getFilterResult1st();getFilterResultLast();getFilterResultFieldList();}/*** 打印几个常数值*/public static void getNormalValue() {Student testClass = (Student) context.getBean("eric");System.out.println(testClass.getName());System.out.println(testClass.getAge());System.out.println(testClass.isGender());}/*** 利用SPEL从别的Bean属性中获得属性值*/public static void getOtherBeanProperties() {Student testClass = (Student) context.getBean("eric");System.out.println(testClass.getAddress());}/*** 利用SPEL从别的Bean的方法调用中获得属性值*/public static void callOtherBeanMethod() {Student testClass = (Student) context.getBean("eric");System.out.println(testClass.getEmail());}/*** get properties value by "Check Safe"*/public static void getOtherBeanPropertiesByCheckSafe() {Student testClass = (Student) context.getBean("eric");System.out.println(testClass.getDescription());}/*** get properties value by static field/Method 此外这个例子中还演示了SPEL还支持* 算数运算(+,-,*,/....) 关系运算(<,>,==,<=,>=...) 逻辑运算(and,or,not) 条件运算(?:)* 正则表达式(matches)* */public static void getPropertiesByStaticField() {Student testClass = (Student) context.getBean("eric");System.out.println(testClass.getRandomId());System.out.println(testClass.getPi());}/*** 利用SPEL随机从列表中选择一个地址*/public static void getPropertyFromList() {Student testClass = (Student) context.getBean("getAddressFromList");System.out.println(testClass.getCity());}/*** 利用SPEL随机从列表中随机一个地址*/public static void getAddressFromListByRandom() {Student testClass = (Student) context.getBean("getAddressFromListByRandom");System.out.println(testClass.getCity());}/*** 利用SPEL从Map中选择一个地址*/public static void getAddressFromMap() {Student testClass = (Student) context.getBean("getAddressFromMap");System.out.println(testClass.getCity());}/*** 利用SPEL从properties选择地址*/public static void getPropertiesFromProperties() {Student testClass = (Student) context.getBean("getPropertiesFromProperties");System.out.println(testClass.getUsername());System.out.println(testClass.getPwd());}/*** 利用SPEL从城市列表中选择地址人口大于123456的城市*/public static void getCityListByCondiciton() {Student testClass = (Student) context.getBean("getCityListByCondiciton");System.out.println(testClass.getFavCities());}/*** 利用SPEL从城市列表中选择地址人口大于123456的结果中的第一个*/public static void getFilterResult1st() {Student testClass = (Student) context.getBean("getFilterResult1st");System.out.println(testClass.getBestCity());}/*** 利用SPEL从城市列表中选择地址人口大于123456的结果中的最後一个*/public static void getFilterResultLast() {Student testClass = (Student) context.getBean("getFilterResultLast");System.out.println(testClass.getWorCity());}/*** 利用SPEL从城市列表中选择地址人口大于123456的结果的所有名字*/public static void getFilterResultFieldList() {Student testClass = (Student) context.getBean("getFilterResultFieldList");System.out.println(testClass.getFavCitieNames());}}

配置

<?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.xsdhttp://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd"><!-- 用来模拟SPEL对集合的操作 --><util:list id="cities"><bean class="com.eric.introduce.spel.City" p:name="NJ" p:state="JS"p:population="123456" /><bean class="com.eric.introduce.spel.City" p:name="HZ" p:state="ZJ"p:population="1231232" /><bean class="com.eric.introduce.spel.City" p:name="SJ" p:state="JS"p:population="778865" /></util:list><!-- 用来模拟SPEL对MAP的操作 --><util:map id="citiesmap"><entry key="nanjing" value-ref="nanjing" /><entry key="hangzhou" value-ref="hangzhou" /></util:map><!-- 用来模拟SPEL对Properties的操作 --><util:properties id="authorization"location="classpath:com/eric/introduce/spel/account.properties" /><bean id="nanjing" class="com.eric.introduce.spel.City" p:name="NJ"p:state="JS" p:population="123456" /><bean id="hangzhou" class="com.eric.introduce.spel.City" p:name="HZ"p:state="ZJ" p:population="1231232" /><!-- 通过Index从list中选择地址 --><bean id="getAddressFromList" class="com.eric.introduce.spel.Student"><property name="city" value="#{cities[2]}"></property></bean><!-- 随机从list中选择地址 --><bean id="getAddressFromListByRandom" class="com.eric.introduce.spel.Student"><property name="city"value="#{cities[T(java.lang.Math).random()*cities.size()]}"></property></bean><!-- 从map选择地址 --><bean id="getAddressFromMap" class="com.eric.introduce.spel.Student"><property name="city" value="#{citiesmap['hangzhou']}"></property></bean><!-- 从properties选择地址 --><bean id="getPropertiesFromProperties" class="com.eric.introduce.spel.Student"><property name="username" value="#{authorization['username']}" /><property name="pwd" value="#{authorization['password']}" /></bean><!-- 从城市列表中选择地址人口大于123456的城市 --><bean id="getCityListByCondiciton" class="com.eric.introduce.spel.Student"><property name="favCities" value="#{cities.?[population gt 123456]}" /></bean><!-- 从城市列表中选择地址人口大于123456的结果中的第一个 --><bean id="getFilterResult1st" class="com.eric.introduce.spel.Student"><property name="bestCity" value="#{cities.^[population gt 123456]}" /></bean><!-- 从城市列表中选择地址人口大于123456的结果中的最後一个 --><bean id="getFilterResultLast" class="com.eric.introduce.spel.Student"><property name="worCity" value="#{cities.$[population gt 123456]}" /></bean><!-- 从城市列表中选择地址人口大于123456的结果的所有名字 --><bean id="getFilterResultFieldList" class="com.eric.introduce.spel.Student"><property name="favCitieNames"value="#{cities.?[population gt 123456].![name+'_'+state]}" /></bean><bean id="eric" class="com.eric.introduce.spel.Student"><!-- 表达常量值 --><property name="name" value="#{'Eric'}"></property><property name="age" value="#{28}"></property><property name="gender" value="#{true}"></property><!-- reference other bean properties --><property name="address" value="#{simon.address}"></property><!-- get properties value from other bean method --><property name="email" value="#{simon.getEmailByName().toUpperCase()}"></property><!-- get properties value by "Check Safe" --><property name="description" value="#{simon.getDescription()?.toUpperCase()}"></property><!-- get properties value by static field/Method --><property name="randomId" value="#{T(java.lang.Math).random()*1000}"></property><property name="pi" value="#{T(java.lang.Math).PI}"></property></bean><bean id="simon" class="com.eric.introduce.spel.Student"><property name="name" value="#{'Simon'}"></property><property name="address" value="#{'WUHAN'}"></property></bean>
</beans>

其他主要相关类

package com.eric.introduce.spel;import java.util.List;public class Student {private int randomId;private float pi;private String name;private boolean gender;private Integer age;private String address;private String email;private String description;private City city;private String username;private String pwd;private List<City> favCities;private List<String> favCitieNames;private City bestCity;private City worCity;
//......get/Set省略
}
package com.eric.introduce.spel;
public class City {
private String name;
private String state;
private int population;
 //......get/Set省略
}







这篇关于Spring3.0 入门进阶(2):SPEL用法大全的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/708419

相关文章

解读GC日志中的各项指标用法

《解读GC日志中的各项指标用法》:本文主要介绍GC日志中的各项指标用法,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、基础 GC 日志格式(以 G1 为例)1. Minor GC 日志2. Full GC 日志二、关键指标解析1. GC 类型与触发原因2. 堆

MySQL数据库中ENUM的用法是什么详解

《MySQL数据库中ENUM的用法是什么详解》ENUM是一个字符串对象,用于指定一组预定义的值,并可在创建表时使用,下面:本文主要介绍MySQL数据库中ENUM的用法是什么的相关资料,文中通过代码... 目录mysql 中 ENUM 的用法一、ENUM 的定义与语法二、ENUM 的特点三、ENUM 的用法1

JavaSE正则表达式用法总结大全

《JavaSE正则表达式用法总结大全》正则表达式就是由一些特定的字符组成,代表的是一个规则,:本文主要介绍JavaSE正则表达式用法的相关资料,文中通过代码介绍的非常详细,需要的朋友可以参考下... 目录常用的正则表达式匹配符正则表China编程达式常用的类Pattern类Matcher类PatternSynta

从入门到精通C++11 <chrono> 库特性

《从入门到精通C++11<chrono>库特性》chrono库是C++11中一个非常强大和实用的库,它为时间处理提供了丰富的功能和类型安全的接口,通过本文的介绍,我们了解了chrono库的基本概念... 目录一、引言1.1 为什么需要<chrono>库1.2<chrono>库的基本概念二、时间段(Durat

MySQL之InnoDB存储引擎中的索引用法及说明

《MySQL之InnoDB存储引擎中的索引用法及说明》:本文主要介绍MySQL之InnoDB存储引擎中的索引用法及说明,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐... 目录1、背景2、准备3、正篇【1】存储用户记录的数据页【2】存储目录项记录的数据页【3】聚簇索引【4】二

mysql中的数据目录用法及说明

《mysql中的数据目录用法及说明》:本文主要介绍mysql中的数据目录用法及说明,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1、背景2、版本3、数据目录4、总结1、背景安装mysql之后,在安装目录下会有一个data目录,我们创建的数据库、创建的表、插入的

深度解析Python装饰器常见用法与进阶技巧

《深度解析Python装饰器常见用法与进阶技巧》Python装饰器(Decorator)是提升代码可读性与复用性的强大工具,本文将深入解析Python装饰器的原理,常见用法,进阶技巧与最佳实践,希望可... 目录装饰器的基本原理函数装饰器的常见用法带参数的装饰器类装饰器与方法装饰器装饰器的嵌套与组合进阶技巧

c++中的set容器介绍及操作大全

《c++中的set容器介绍及操作大全》:本文主要介绍c++中的set容器介绍及操作大全,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧... 目录​​一、核心特性​​️ ​​二、基本操作​​​​1. 初始化与赋值​​​​2. 增删查操作​​​​3. 遍历方

解析C++11 static_assert及与Boost库的关联从入门到精通

《解析C++11static_assert及与Boost库的关联从入门到精通》static_assert是C++中强大的编译时验证工具,它能够在编译阶段拦截不符合预期的类型或值,增强代码的健壮性,通... 目录一、背景知识:传统断言方法的局限性1.1 assert宏1.2 #error指令1.3 第三方解决

Mysql中isnull,ifnull,nullif的用法及语义详解

《Mysql中isnull,ifnull,nullif的用法及语义详解》MySQL中ISNULL判断表达式是否为NULL,IFNULL替换NULL值为指定值,NULLIF在表达式相等时返回NULL,用... 目录mysql中isnull,ifnull,nullif的用法1. ISNULL(expr) → 判