Spring Expression Language 简明教程

Spring SpEL - Properties

SpEL 表达式支持访问对象的属性。

  1. 我们也可以在 SpEL 表达式中访问嵌套属性。

  2. 在 SpEL 表达式中,属性的首字母不区分大小写。

以下示例显示了各种使用案例。

Example

让我们更新在 Spring SpEL - Create Project 章节创建的项目。我们添加/更新了以下文件:

  1. Employee.java − Employee class.

  2. MainApp.java - 要运行和测试的主应用。

以下 Employee.java 文件的内容:

package com.tutorialspoint;

import java.util.Date;

public class Employee {
   private int id;
   private String name;
   private Date dateOfBirth;

   public int getId() {
      return id;
   }
   public void setId(int id) {
      this.id = id;
   }
   public String getName() {
      return name;
   }
   public void setName(String name) {
      this.name = name;
   }
   public Date getDateOfBirth() {
      return dateOfBirth;
   }
   public void setDateOfBirth(Date dateOfBirth) {
      this.dateOfBirth = dateOfBirth;
   }
   @Override
   public String toString() {
      return "[" + id + ", " + name + ", " + dateOfBirth + "]";
   }
}

以下 MainApp.java 文件的内容:

package com.tutorialspoint;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import org.springframework.expression.EvaluationContext;
import org.springframework.expression.ExpressionParser;
import org.springframework.expression.spel.standard.SpelExpressionParser;
import org.springframework.expression.spel.support.StandardEvaluationContext;

public class MainApp {
   public static void main(String[] args) throws ParseException {
      ExpressionParser parser = new SpelExpressionParser();
      Employee employee = new Employee();

      employee.setId(1);
      employee.setName("Mahesh");
      employee.setDateOfBirth(new SimpleDateFormat("YYYY-MM-DD").parse("1985-12-01"));

      EvaluationContext context = new StandardEvaluationContext(employee);

      int birthYear = (Integer) parser.parseExpression("dateOfBirth.Year + 1900").getValue(context);
      System.out.println(birthYear);

      String name = (String) parser.parseExpression("name").getValue(context);
      System.out.println(name);
   }
}

Output

1984
Mahesh