How to assign values for a list of some objects defined as variable with Spring Expression Language(Or the other expression languages you aware of)
问题 In Spel, it is easy to assign some values for a List property. For example having object foo with a property defined as List, I usually do: SpelParserConfiguration config = new SpelParserConfiguration(true,true); ExpressionParser parser = new SpelExpressionParser(config); Foo foo = new Foo(); EvaluationContext context = new StandardEvaluationContext(foo); parser.parseExpression("barList[1].test='11111111'") .getValue(context); But what do you do for the case you want to assign values for a