欢迎来到天天文库
浏览记录
ID:37752532
大小:32.39 KB
页数:12页
时间:2019-05-30
《基于restful注解(spring4.0.2整合flex+blazeds+spring-mvc)》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、基于restful注解(spring4.0.2整合flex+blazeds+spring-mvc)<一>参考官网:1.http://livedocs.adobe.com/blazeds/1/blazeds_devguide/2.http://docs.spring.io/spring-flex/docs/1.5.2.RELEASE/reference/html/1)下载blazeds(turnkey4.0.x版本)网址:http://sourceforge.net/adobe/blazeds/wiki/Home/2)先创建maven工程,然后进入bl
2、azeds目录/tomcat/webapps/blazeds/WEB-INF/flex 连flex目录拷贝到src/main/resource目录下(也可以直接拷贝文件)如图:3)核心flex相关jar包 下载spring-flex-core-1.5.2.RELEASE.jar blazeds-core-4.0.0.14931.jar blazeds-common-4.0.0.14931.jar blazeds-proxy-4.0.0.14931.jar blazeds-remoting-4.
3、0.0.14931.jar其中spring-flex-core-1.5.2.RELEASE.jar可以从远程maven中心仓库下载,而blazeds的jar在中心仓库版本有误,如图:spring容器启动时spring-flex-core-1.5.2依赖的是blazeds的4.0.0.14931版本,而maven中心仓库并无此jar包,因此以上四个包需手工打入本地maven仓库,打入命令进入blazeds目录/resources/lib下执行以下maven命令mvn install:install-file -Dpackaging=jar -Dgrou
4、pId=com.adobe.blazeds -Dversion=4.0.0.14931 -DartifactId=blazeds-common -Dfile=flex-messaging-common.jar mvn install:install-file -Dpackaging=jar -DgroupId=com.adobe.blazeds -Dversion=4.0.0.14931 -DartifactId=blazeds-core -Dfile=flex-messaging-core.jar mvn install:install-file
5、-Dpackaging=jar -DgroupId=com.adobe.blazeds -Dversion=4.0.0.14931 -DartifactId=blazeds-opt -Dfile=flex-messaging-opt.jar mvn install:install-file -Dpackaging=jar -DgroupId=com.adobe.blazeds -Dversion=4.0.0.14931 -DartifactId=blazeds-proxy -Dfile=flex-messaging-proxy.jar mvn ins
6、tall:install-file -Dpackaging=jar -DgroupId=com.adobe.blazeds -Dversion=4.0.0.14931 -DartifactId=blazeds-remoting -Dfile=flex-messaging-remoting.jar至此在工程中即可引入相关jar包.4) 配置flex/services-config.xml文件红色为修改后内容channel对于flex来讲,相当于一个通信管道,在flex客户端端表现为endpoint="下面红色字体中endpoint.url属性" 1
7、 2 3 4 5 6 7
8、8 9 10 11
此文档下载收益归作者所有