wuhaixing
wuhaixing
no setter in LoginToken
There is a type cast exception when use ArrayList Long
I think following code from mvel org.mvel2.PropertyAccessor is the exception source: ``` java if (curr instanceof Map) { //noinspection unchecked ((Map) curr).put(eval(ex, this.ctx, this.variableFactory), value); } else if (curr instanceof...
I just add a test to PropertyAccessTests in MVEL ``` java public class Datas { private List ids = new ArrayList(); public void setIds(List ids) { this.ids = ids; }...