所以我试图使用Stripes框架来运行一个hello world应用程序。在维基百科上使用示例: http://en.wikipedia.org/wiki/Stripes_%28framework%29#Example
所以使用我的tomcat服务器中的jsp文件和java文件,我尝试运行jsp文件,它只提出:
您好
再试一次
这是jsp文件中的内容,但它似乎没有使用java文件。
我应该有其他的东西,或者我试图以错误的方式访问它?
答案 0 :(得分:1)
不确定,但我确实知道你的二传手,
public void setContext(ActionBeanContext context) {
this.context = context;
}
应该之前你的getter,
public ActionBeanContext getContext() {
return context;
}
不是之后。
答案 1 :(得分:1)
查看Stripes UrlBinding的官方网页
http://stripes.sourceforge.net/docs/current/javadoc/net/sourceforge/stripes/action/UrlBinding.html
我可以看到代码应该可以正常工作,但正如Dave所问,你在叫什么Url?
http://localhost:8080/hello-/Paul.html
应该可以使用,但您也可以简单地使用UrlBinding - 根据提供的链接。