這裏評估JSP EL這就是我想做的事:沒有一個Servlet容器
Map<String, Object> model = new Hashmap<String, Object>();
model.put("a", "abc");
model.put("b", new Hashmap<String, Object>());
model.get("b").put("c", "xyz");
String el = "A is ${a} and C is ${b.c}";
assertEquals(elEval(el, model), "A is abc and C is xyz");
這可能嗎?
謝謝!這看起來就像我正在尋找的東西。 –