BlazeDS binary最新版下载地址

BlazeDS binary latest version download location

我正在尝试下载 blazeDS 以将我未来的 Adob​​e Flex 应用程序与 Java Web 应用程序集成 我找到的所有链接都来自 this site 并指向 Adob​​e 的网站,后者又指向前者.

我可以得到二进制 blazeDS jar/war 吗?我不想要源文件

A​​dobe 放弃了 Flex 的开发,但幸运的是该框架由 Apache Fundation 更新:

http://flex.apache.org/download-blazeds.html

您可以从这里下载可执行版本(旧版本)

https://drive.google.com/file/d/0B6l2NgAntvfNT20wNDdVUHNqekk/view?usp=sharing

或者只获取最新版本 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>