メソッド 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() を使用すると、属性名がマップ内に見つからない場合にデフォルト値を定義できることですか?