我有 spring mvc 和瓷砖。现在我需要用户控制
我不太熟悉 java web 技术。
我正在使用 spring mvc 和 apachetiles。现在我希望创建一个用户控件(像asp.net中的用户控件)。
例如,我将在特定的 html 模式中多次使用(例如使用级联下拉菜单和 ajax 调用的地址选择器)。
什么是最好的技术/框架,它允许我创建用户控件并且可以与 spring mvc 和tiles很好地配合使用?
I am not really femiliar with java web tchnologies.
I am using spring mvc with apache tiles. Now I desire to create a user control (user control like in asp.net).
For example, I am going to use many times in specific html pattern (like address chooser that uses cascading drop downs and ajax calls).
What is the best thecnology/framework that will allow me create user controls and will work good with spring mvc and tiles?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以拥有一些可以帮助您重用某些代码的东西,但最终它只不过是一个(或多或少智能的)片段。 (Dave Newton 已经在他的评论中解释过,jsp 是基于操作的,而不是面向组件的)
它称为自定义标签:
tag
或tagx
。在 spring roo 项目中可以找到如何使用
tagx
文件和jspx
文件(x
很重要)一起工作的好例子。@参见http://docs.oracle.com/javaee/5/tutorial /doc/bnalk.html -- 可能不是很好的例子,但它应该是完整的
You can have something that helps you to reuse some code, but in the end it is nothing more like a (more or less intelligent) snippets. (Dave Newton already explaind in his comment, that jsp are action based and not component oriented)
It is called custom tags:
tag
ortagx
.And good example how to use
tagx
files andjspx
files (thex
is important) works together can be found in a spring roo project.@See http://docs.oracle.com/javaee/5/tutorial/doc/bnalk.html -- may not so good example but it should be complete