SmartGWT、Spring、Hibernate 和 Gilead
我正在使用免费版本编写 GWTSmart 应用程序。在客户端,我有一个带有 RestDataSource 的网格,它向我的 Servlet 发出请求。我读取 startrow、endrow ...参数并决定使用 JDBC (MySQL) 从数据库读取什么。使用结果数据,我制作(手动)JSON 数据并将其返回到客户端。它有效;)
但我决定寻找可以轻松编写服务器端代码的库。
我不确定 Spring 是什么,Hibernate 和 Gilead 是为了......你能吗给我一些描述并告诉我他们如何帮助我(如果可以的话)
你知道其他有用的库吗?
PS JavaEE 开发中的新功能
I'm writing GWTSmart application using the free version. On the client side I have a grid with RestDataSource that make request to my Servlet. I read startrow, endrow ... parameters and decide what to read from database using JDBC (MySQL). With result data I make (manual) JSON data and return it to the client side. And it Works ;)
But I decided to look for libraries that can make it easy to write server side of the code.
I'm not sure what Spring, Hibernate and Gilead are for ... can you give me some sort of description and tell me how can they help me (if they can)
And do you know other libraries that can be useful?
P.S. In new in JavaEE Development
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不使用付费版本,则将 SmartGWT 与数据源结合使用可能会很痛苦。基本上是因为缺乏有关如何将 Spring 和 GWT RPC 代码集成到现有数据源格式的文档。
我能够管理一些解决方法,使用 clientOnly Datasources 和 setTestData,将 ListGridRecord 对象作为值数组传递。
检查国家电网,他们以同样的方式使用它。
问题是你需要组成一个数据数组并将它们传递给组件,不是很友好并且非常消耗代码。
我也在寻找替代方案,一旦找到,我会回复您。
干杯
Using SmartGWT with datasources can be a pain if you are not using their paid version. Basically because of the lack of documentation on how to integrate Spring and GWT RPC code to the existing datasource format.
I was able to manage some workarounds, using clientOnly Datasources and setTestData, passing A ListGridRecord object as Array of Values.
Check the Country Grids, they use it the same way.
The problem is that you need to compose an array of data and pass them to the component, not very friendly and very code consuming.
I am also looking for an alternative and will get back to you once I find it.
Cheers