学习 Flex Java Web 服务的建议
我是一名 Flex 开发人员,想要学习 Java 服务方面的知识。我想在我现在编写的应用程序中使用 Spring、BlazeDS 和 Hibernate。我编写了几个简单的 Java 应用程序,但从未编写过服务、使用过 Spring 或 BlazeDS。您建议我从哪里开始?我应该如何学习以及您推荐哪些资源来实现这一目标?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我为此整理了一份资源列表:
http://www.jamesward.com/flex-and-java-resources/
另请查看我共同撰写的关于 Spring、BlazeDS 和 Flex 集成的 Refcard:
http://refcardz.dzone.com/refcardz/flex-4-and -spring-3
I've put together a list of resources for exactly this:
http://www.jamesward.com/flex-and-java-resources/
Also check out a Refcard that I co-authored on Spring, BlazeDS and Flex integration:
http://refcardz.dzone.com/refcardz/flex-4-and-spring-3
对于 RIA,您很可能会使用 Spring 后端作为数据服务。 《Spring Persistence with Hibernate》一书(链接文本)向您介绍了 Spring 和 Hibernate然后向您展示如何构建持久层(域模型、DAO、事务、缓存...)。重要的一点是它是最近的,因此它涵盖了 Spring 3、Hibernate 3.5 和 JPA 2.0(新的 Criteria API)。
Spring BlazeDS 集成项目,用于通过 BlazeDS 将 Flex 应用程序与 Spring 后端连接起来(链接文本)。
BlazeDS 开发人员指南中的数据序列化部分有助于理解数据如何在 java 和 actionscript 之间序列化 (链接文本)。
As for a RIA you will most likely use your spring backend as a data service. The book Spring Persistence with Hibernate (link text) introduces you to spring and hibernate and then shows you how to build your persistence layer (Domain model, DAO, transactions, caching...). An important point is that it is very recent so it covers Spring 3, Hibernate 3.5 and JPA 2.0 (new Criteria API).
Spring BlazeDS integration project to connect your flex app with a Spring backend through BlazeDS (link text).
From the BlazeDS developer guide, the data serialization section is helpful to understand how data is serializated between java and actionscript (link text).