• 1.SpringEL初始


    SpringEL初始

    什么是SpringEL

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

    Spring Beans

    两个简单Bean,后来利用 SpEL 注入值到属性,在 XML 和 注释。

    public class Customer {
    
    	private Item item;
    
    	private String itemName;
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    public class Item {
    
    	private String name;
    
    	private int qty;
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    Spring EL以XML形式

    • 使用 SpEL关闭的#{ SpEL expression }括号,请参阅XML bean定义文件下面的例子
    <beans xmlns="http://www.springframework.org/schema/beans"
    	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    	xsi:schemaLocation="http://www.springframework.org/schema/beans
    	http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
    
    	<bean id="itemBean" class="com.yiibai.core.Item">
    		<property name="name" value="itemA" />
    		<property name="qty" value="10" />
    	bean>
    
    	<bean id="customerBean" class="com.yiibai.core.Customer">
    		<property name="item" value="#{itemBean}" />
    		<property name="itemName" value="#{itemBean.name}" />
    	bean>
    	
    beans>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    1. #{itemBean} – 注入"itemBean"到"customerBean"Bean 的"item"属性。
    2. #{itemBean.name} – 注入"itemBean"的"name"属性到 “customerBean” bean的"itemname"属性。

    Spring EL以注解形式

    在注解使用使用SpEL,必须通过注解注册您的组件。如果注册bean在XML和Java类中定义@Value,该@Value将无法执行

    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;
    
    	//...
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    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;
    	}
    
    	//...
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18

    启用自动组件扫描

    <beans xmlns="http://www.springframework.org/schema/beans"
    	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    	xmlns:context="http://www.springframework.org/schema/context"
    	xsi:schemaLocation="http://www.springframework.org/schema/beans
    	http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    	http://www.springframework.org/schema/context
    	http://www.springframework.org/schema/context/spring-context-3.0.xsd">
    
    	<context:component-scan base-package="com.yiibai.core" />
    
    beans>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    在注解模式下,可以使用@Value定义Spring EL。在这种情况下,一个String和Integer值直接注入到“itemBean”,之后又注入“itemBean”到“customerBean”属性

    执行输出

    运行它,无论是使用 SpEL在XML 还是注释都显示了同样的结果:

    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);
    	}
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    输出结果

    Customer [item=Item [name=itemA, qty=10], itemName=itemA]
    
    • 1
  • 相关阅读:
    USDR脱锚事件:稳定币碰上房地产,双重buff想不崩都难!
    安卓开发面试题
    【EasyPoi】SpringBoot使用EasyPoi自定义模版导出Excel
    @Cacheable 注解(指定缓存位置)
    RabbitMQ学习笔记(二)SpringAMQP的使用、消息转换器
    数据结构中树、森林 与 二叉树的转换
    go 语言爬虫库goquery介绍
    【Linux】守护进程
    【SpringBoot】8.SpringBoot中的异步任务
    java3、异常
  • 原文地址:https://blog.csdn.net/LuckFairyLuckBaby/article/details/132909948