使用SpEL(Spring表达式语言)解析JSON对象,可以通过以下步骤:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-expression</artifactId>
</dependency>
JSONObject json = new JSONObject();
json.put("name", "John");
json.put("age", 30);
ExpressionParser parser = new SpelExpressionParser();
EvaluationContext context = new StandardEvaluationContext(json);
String name = parser.parseExpression("name").getValue(context, String.class);
int age = parser.parseExpression("age").getValue(context, Integer.class);
在上述代码中,SpEL的解析器使用SpelExpressionParser
类创建,EvaluationContext
指定需要解析的JSON对象,然后使用parseExpression
方法解析SpEL表达式,最后使用getValue
方法获取表达式的值。
注意:解析JSON对象时,需要确保JSON字符串的属性名与SpEL表达式的属性名一致。如果JSON对象是一个数组形式的JSON字符串,则需要使用List
或Object[]
类型来接收解析结果。
这样就可以使用SpEL解析JSON对象了。