据我所知,我正在使用 Struts 1.3 开发一个项目,因为它位于 struts-config-default.xml 文件的顶部:
<!DOCTYPE struts-config PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"
"http://struts.apache.org/dtds/struts-config_1_3.dtd">
有没有办法将通配符映射到一个jsp文件?我尝试了各种通配符变体:
<action path="/hello/candy" type="com.officedepot.globalweb.framework.action.ForwardDisplayAction">
<forward name="success" path="/WEB-INF/jsp/candyStore.jsp" />
</action>
我有一个在“candyStore.jsp”中加载的单页应用程序,所以我希望 /hello/candy 之后的所有 URI 都路由到同一个 JSP。(例如www.site.com/hello/candy/pageOne、www.site.com/hello/candy/33/jellybean、www.site.com/hello/candy/test都应该转发到jsp candyStore)
这完全可能使用 Struts 1.3 还是我应该编写所有可能的路线:(
谢谢!