Flex和Java 整合有几种方法,最常见的是:
一,Flex,java在一个项目中。
二,Flex,java分别在两个项目中。
第一种,直接在新建Flex项目中选择应用服务器,选择blazeDS即可。
注意要写上输出文件夹url.endpoint=”messagebroker/amf” 写上相对路径即可。
第二种,分别新建Flex ,java 项目,blazeds.war项目中的WebConten/Web-Inf替代java项目下的web-inf。在remoting-config.xml下写上:
com.demo.hxh
并布署为tomcat.
Flex项目中修改endpoint=”/hxh/messagebroker/amf”,并设置输出文件夹为java ,WebContent下的,输出文件夹url为java项目,如为http://localhost:8400/hxh
或者新建项目如一,在新建项目java把编译目录设为Flex-webcontent-classes下。
一般问题都错在设置上,endpoint是一个注意点。
关于endpoint:
public interface Endpoint
An endpoint receives messages from clients and decodes them, then sends them on to a MessageBroker for routing to a service. The endpoint also encodes messages and delivers them to clients. Endpoints are specific to a message format and network transport, and are defined by the named URI path on which they are located.
在 对象中指定Endpoint参数:
1) 全路径: endpoint=”http://server:8080/HelloBlazeDS/messagebroker/amf” > 2) 基于contextRoot: endpoint=”/HelloBlazeDS/messagebroker/amf” > 3) 基于当前路径: endpoint=”messagebroker/amf” >
今天的文章flex整合java_Flex和Java 整合分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/27385.html