我有一个关于 getInteger() 和 getRequiredInteger() 方法之间差异的快速问题。
public void foo(RequestContext requestContext){
MutableAttributeMap flowScope = requestContext.getFlowScope();
String bar = flowScope.getString("bar","bar"); // (attributeName, defaultValue)
String baz = flowScope.getRequiredString("baz");
}
唯一的区别是使用 getInteger(),如果在地图中找不到属性名称,您可以定义默认值吗?