struts2结果相对路径
我将所有 jspx 模板存储在 /WEB-INF/templates/
中,
我厌倦了像
这样的复制/粘贴 <结果名称=“成功”>/WEB-INF/templates/foo/success.jspx
<结果名称=“失败”>/WEB-INF/templates/ foo/foo.jspx;
我的所有模板都在 WEB-INF/templates/ 中,
我可以将整个包设置在一个地方吗?
我简要地查看了代码,发现需要注意 UiBean#getTemplateDir
我需要破解才能实现我的目标。
我想知道是否有官方(不是黑客!)方法来解决我的问题。
谢谢。
I store all my jspx templates in /WEB-INF/templates/<package>/
I am tired of copy/paste like
<result name="success">/WEB-INF/templates/foo/success.jspx</result>
<result name="fail">/WEB-INF/templates/foo/foo.jspx</result>
All my templates are in WEB-INF/templates/
Could I set it in one place for the whole package?
I briefly looked into the code and found noting about it expect UiBean#getTemplateDir
that I need to hack to achieve my goal.
I wonder if there is an official (not hack!) way to solve my issue.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
struts.property 文件中设置了一个属性,
我自己没有使用过它,但我想这是告诉 Struts2 在哪里寻找模板的东西
像这样的事情
你可以尝试这样的事情
There is one property which is set in struts.property file
i have not used it myself but i guess this is something which tell Struts2 where to look for template
something like
you can try something like this