我试图下载blazeDS,以集成我未来的Adobe Flex应用程序与Java Web应用程序,我发现所有链接都来自this site,并指向Adobe的网站,而这些网站又指向前者。我可以得到二进制blazeDS jar/war吗?我不知道什么源文件
omvjsjqw1#
Adobe放弃了Flex的开发,但幸运的是,Apache基金会更新了该框架:http://flex.apache.org/download-blazeds.html您可以从此处下载可执行版本(旧版本https://drive.google.com/file/d/0B6l2NgAntvfNT20wNDdVUHNqekk/view?usp=sharing
6l7fqoea2#
或者您也可以从www.example.com获取最新版本4.7.2.(2016年12月)mvnrepository.com网址为:https://mvnrepository.com/artifact/org.apache.flex.blazeds您可以通过选择工件并单击“Download(JAR)"来获取每个JAR。如果您有一个maven项目,您可以只将以下依赖项添加到pom.xml:
<!-- https://mvnrepository.com/artifact/org.apache.flex.blazeds/flex-messaging-common --> <dependency> <groupId>org.apache.flex.blazeds</groupId> <artifactId>flex-messaging-common</artifactId> <version>4.7.2</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.flex.blazeds/flex-messaging-core --> <dependency> <groupId>org.apache.flex.blazeds</groupId> <artifactId>flex-messaging-core</artifactId> <version>4.7.2</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.flex.blazeds/flex-messaging-proxy --> <dependency> <groupId>org.apache.flex.blazeds</groupId> <artifactId>flex-messaging-proxy</artifactId> <version>4.7.2</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.flex.blazeds/flex-messaging-remoting --> <dependency> <groupId>org.apache.flex.blazeds</groupId> <artifactId>flex-messaging-remoting</artifactId> <version>4.7.2</version> </dependency>
2条答案
按热度按时间omvjsjqw1#
Adobe放弃了Flex的开发,但幸运的是,Apache基金会更新了该框架:
http://flex.apache.org/download-blazeds.html
您可以从此处下载可执行版本(旧版本
https://drive.google.com/file/d/0B6l2NgAntvfNT20wNDdVUHNqekk/view?usp=sharing
6l7fqoea2#
或者您也可以从www.example.com获取最新版本4.7.2.(2016年12月)mvnrepository.com网址为:
https://mvnrepository.com/artifact/org.apache.flex.blazeds
您可以通过选择工件并单击“Download(JAR)"来获取每个JAR。
如果您有一个maven项目,您可以只将以下依赖项添加到pom.xml: