当前位置: 首页 > 工具软件 > Apache River > 使用案例 >

Apache-River 入门

戚宏浚
2023-12-01

说起Apache-River必须说起他的前身,JINI技术,有刚接触JINI的同学会发现,JINI的安装包已经在SUN上找不到了,因为现在Apache-river等同于JINI,它是完全开源的。

一、下载并解压

1)Apache-river下载地址http://river.apache.org/user-doc/releases.html 笔者建议下载2.x.x版本的,官网上说明如下If you are going to use the latest release then you will still need to download (from the SVN trunk) some of the Windows BAT files mentioned below. *nix sh scripts of those same batch files will appear shortly.然后截至到2018.1.1我下载最新版本后的一个多月我都在和这个不完全版本做斗争,很坑。

2)解压安装包并放在简单的目录中

二、构建ant环境

1)确保你的JAVA及JDK安装正确,环境配置成功
2)下载ant 地址http://www.apache.org/
3)解压ant 将其放在一个简单的目录中
4)设置ANT_HOME PATH中添加ANT_HOME目录下的bin目录
5)测试一下你的设置,开始-->运行-->cmd进入命令行-->键入 ant 回车,如果看到
Buildfile: build.xml does not exist!
Build failed

那么恭喜你你已经完成ant的设置

三、编译Apache-river

Apache-river中有一个关键的部署文件build.xml

这表明它是一个典型的需要ANT编译的软件包

输入ant all.build来编译整个文件包,会发现出现了很多我们需要的JAR包,这些JAR包就是我们开发JINI程序要用到的,至此,原料已经准备好。

  • a Lookup Service, the "reggie" implementation
  • a JavaSpace, the "outrigger" implementation
  • a Transaction Service, the "mahalo" implementation

 类似资料: