将对象从 Java(BlazeDs) 服务器传递到前端 Flex 应用程序
我正在寻求帮助。我已经建立了一个使用 BlazeDs 的 Java 动态 Web 项目。它位于 Tomcat 服务器上,可以向前端 Flex 项目发送和接收字符串。
现在我的问题是,AMF 通道已设置为进行通信,如何跨通道传递 ArrayList 或二维数组等对象并在 Flex 应用程序中渲染它们(例如通过数据网格?)任何帮助将不胜感激!
谢谢
I am looking for some help. I have set up a Java Dynamic web project which uses BlazeDs. This is on a Tomcat server and can send and recieve strings to a front end Flex project.
My question is now that the AMF channels are set up to communicate how can I pass Objects such as ArrayLists or Two Dimensional arrays accross the channel and render them in the flex app (Say through a datagrid?) Any help will be greatly appreciated!
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发送对象的机制与发送字符串的机制相同。服务不是返回或接收字符串,而是返回或接收对象、列表等。
您需要记住的是数据如何序列化/反序列化,即数据如何从 ActionScript 数据转换type 为 Java 数据类型,反之亦然。此链接可以提供帮助
链接文本
The mechanism to send Objects is the same as with Strings. Instead of a service returning or receiving a String it can return or receive an Object, a List, etc.
What you need to keep in mind is how data is serialized/de-serialized, this is, how data is converted from an ActionScript data type to a Java data type and viceversa. This link can help
link text