ctx.withString("size", "");
Integer integer = ctx.getInteger("size");
System.out.println(integer);
}
public void testAccess(){
ctx.withObject("map", new SimpleContextMap());
ContextMap map = ctx.getContextMap("map");
map.withString("s","s");
// TODO cannot use cascading anymore, fix it
map.withBoolean("b", true);
}