使用 Eclipse 和 Java SE 6 创建独立 Web Services 应用程序,第 1 部分: Web Services 服务端应用程序
2010-02-02 00:00:00 来源:WEB开发网核心提示: 确保通过右键单击此文件并选择 Open With > Ant Editor,从而使用 Ant Editor 打开此文件,使用 Eclipse 和 Java SE 6 创建独立 Web Services 应用程序,第 1 部分: Web Services 服务端应用程序(6),从现在开始,每
确保通过右键单击此文件并选择 Open With > Ant Editor,从而使用 Ant Editor 打开此文件。从现在开始,每当您双击此文件,都会使用 Ant Editor 将其打开。
图 9. 创建 Ant 文件
输入如清单 2 所示的 Ant 项目。
清单 2. Ant 脚本
<project default="wsgen">
<target name="wsgen" >
<exec executable="wsgen">
<arg line="-cp ./bin -keep -s ./src -d ./bin com.myfirst.wsServer.SayHello"/>
</exec>
</target>
</project>
若要运行该 Ant build.xml 文件,请右键单击 Run As 并选择 Ant Build,这将会执行该 Ant 文件。
确保此操作在 Eclipse 控制台窗口中产生 BUILD SUCCESSFUL 消息,如图 10 所示。
图 10. Ant 构建成功
返回到 Eclipse 项目,通过右键单击 wsServerExample 并选择 Refresh 来刷新该项目。您现在应该在名为 com.myfirst.wsServer.jaxws 的包下面看到生成用于运行所创建的 Web Services 的代码(请参见图 11)。
图 11. 生成的代码
发布 Web Services
在为 Web Services 的服务器生成代码以后,您需要发布该 Web Services 以便能够开始使用它:
更多精彩
赞助商链接