表示层与阿帕奇扭矩一起使用
我计划使用 Apache Torque 作为我的对象关系映射器 (ORM),我想知道是否有人对使用什么框架来使用 Torque 表示层有任何建议。 也许是春天?
我不知道这是否有帮助,但我的应用程序基本上是一堆输入数据的表单,并根据这些数据,我将以图形或图表的形式生成报告。
I'm planning on using Apache torque as my object-relational mapper (ORM), and I was wondering if anybody has any suggestions around what framework to use for presentation layer with torque. maybe Spring?
I don't know if this helps, but my application is basically going to be bunch of forms to input data and based on that data, I'll generate reports in form of a graph or chart.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您的应用程序是基于 Web 的,则 CSS/XHTML/JQuery & Spring MVC 一直对我来说效果很好,否则,如果是厚客户端,则使用 Swing。
顺便说一句,如果“关注点分离”正确,那么您选择的 ORM 应该不会影响您使用的表示层。
我还建议使用 Hibernate 而不是 Torque,至少从我的角度来看,它实际上是当今事实上的标准,这意味着更多的生产时间和很多人在遇到问题时提供帮助。
If your application is web-based then CSS/XHTML/JQuery & Spring MVC has always worked out great for me, otherwise, if it's thick-client, Swing.
Incidentally, if you get you 'separation-of-concerns' right your choice of ORM should have no impact what presentation layer you use.
I'd also advise using Hibernate rather than Torque, it is, from my perspective at least, practically a defacto standard nowadays, which translates into many more production hours and a lot of people to help when you run into issues.
Turbine 是一个与 Torque 集成的 servlet 框架(Torque 最初是 Turbine 的一部分)。 它可以使用 Velocity 或 JSP 作为其表示层。
Turbine is a servlet framework that integrates with Torque (Torque was originally part of Turbine). It can use either Velocity or JSP as its presentation layer.
如果您正在制作图表并希望它们具有交互性,通常将 Jersey/REST 与 Flex 和/或 jQuery 图表库(迷你图很酷)图表结合起来效果很好。 如前所述,Spring MVC 很好,Struts 2 对于平面页面也很好。
If you are doing charts and want them to be interactive, often combining Jersey/REST with Flex and/or jQuery charting libs (sparklines are cool) charts works well. As previously mentioned, Spring MVC is good, as is Struts 2 for flat pages.