我可以在 html 页面中单击 html 链接时调用 Struts2 操作吗
我希望在单击 html 页面中的 html 链接时执行 Struts2 操作。 我的第一个问题是是否可以在 html 页面(而不是 JSP)中执行 Struts2 操作? 如果是,请看下面我的代码:
home.html
href="home.action"
struts.xml
动作名称=“home”类=“com.struts.action.HomeAction”
结果名称=“成功”>loginJSP.jsp
*****web.xml***** 我做了过滤器映射,以便一切都转到 Struts2
I want a Struts2 action to be performed on click of a html link in a html page.
My first question is whether is it possible to perform a Struts2 action in a html page(not JSP)?
If yes, take a look at my code below:
home.html
href="home.action"
struts.xml
action name="home" class="com.struts.action.HomeAction"
result name="Success">loginJSP.jsp
*****web.xml*****
I did filter mapping such that everything goes to Struts2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你试过这个吗?
还是这个?
另请参阅: http://struts.apache.org/2.x/docs/ url.html
只是好奇,为什么不能使用 JSP?
Have you tried this?
Or this?
Also see: http://struts.apache.org/2.x/docs/url.html
Just curious to know, why can't you use JSP?
这样你就可以调用你喜欢的方法了。
请记住将以下内容放入您的 struts 配置中:
In this way you can call the method that you prefer.
Remember to put in your struts config this: