我应该在 XML 文件中使用哪些有效元素和属性值?
对于 Struts 2 应用程序,我使用了 validation.xml
。
我使用了各种元素。我如何知道元素、子元素是什么,它们的属性是什么,我应该为这些属性使用什么值?
我查看了 DOCTYPE 中提到的 DTD URL,但没有有关元素的详细信息。
For a Struts 2 application I have used validations using the validation.xml
.
In that I use various elements. How do I know what are the elements, subelements are there, and what are the attributes for them, what are the values I should use for the attributes?
I have looked in the DTD URL mentioned in DOCTYPE but there is no detailed information about the elements.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议尝试几个支持 Struts 2 的 IDE 插件(例如 IntelliJ - 即使它是商业的 - 有 30 天的试用期)。如果您的项目设置正确,那么他们应该在编辑这些文件时提供补充提示(例如,代码完成提示、错误属性的错误突出显示等)——这比挖掘不完整的文档要快得多。
我知道,这不是传统/正确的学习方式,但现在 IDE 非常智能,至少对我来说,我可以说我从它们身上学到了很多东西:)。
I would suggest to try several IDE plug-ins that support Struts 2 (e.g. IntelliJ too - even if it's commercial - there's a 30 days trial). If your project is setup correctly then they should offer supplemental hints when editing those files (for example, code completion hints, error highlighting for bad attributes, etc.) - that's much faster than digging in incomplete documentation.
I know, this is not the conventional/correct way of learning things, but these days IDEs are so smart that, at least for me, I can say I learn a lot from them :).