| Issue 107: | アクションメソッド探索ルールの確認と定義 | |
| 1 person starred this issue and may be notified of changes. | Back to list |
例えば /add/hoe にアクセスがあった場合、
@Page("add")
public class AddPage {
@GET
@ActionPath("hoe")
public Navigation hoe() {
}
}
@Page("add/hoe")
public class AddHoePage {
@GET
public Navigation index() {
}
}
AddPage#hoe()とAddHoePage#index()のどちらが呼ばれるか、など、アクションメ
ソッド探索ルールの定義をする。また、現状の実装がどうなっているかの確認をする。
Apr 15, 2009
Project Member
#1
shinpei.ohtani@gmail.com
Status:
Fixed
|