アクション メソッドの場合:
@Action("/hello/${name}")
public String world() {
value = "Hello "+name+"!";
return "#world";
}
/hello/world.jsp
の下でJSP をレンダリングする方法はWEB-INF
? にプレフィックスを追加する構成の代替手段はありますかresultPath
。
ありがとうアーナンド
アクション メソッドの場合:
@Action("/hello/${name}")
public String world() {
value = "Hello "+name+"!";
return "#world";
}
/hello/world.jsp
の下でJSP をレンダリングする方法はWEB-INF
? にプレフィックスを追加する構成の代替手段はありますかresultPath
。
ありがとうアーナンド