| Issue 44: | @Pageのパスが2階層などの場合に、viewにうまく遷移しない | |
| 1 person starred this issue and may be notified of changes. | Back to list |
@RequestScope
@Page("twitter/publicTimeLine")
public class TwitterPage {
@Default
public Navigation getPublicTimeLine(final TeedaContext context) {
Twitter twitter = new Twitter();
try {
context.getRequest().setAttribute("timeline",
twitter.getPublicTimeline());
} catch (TwitterException e) {
throw new RuntimeException(e);
}
return Forward.to("jsp/timeLine.jsp");
}
}
などの場合、t2-samples/jsp/timeLine.jspではなく、
t2-samples/publicTimeLine/jsp/timeLine.jspに遷移しようとする。
Apr 6, 2008
Project Member
#1
shinpei.ohtani@gmail.com
Status:
WontFix
|