如何让我的简单 Java Web 服务正常工作?

发布于 2024-07-21 07:22:31 字数 386 浏览 5 评论 0原文

在教科书练习中,我们创建了 3 个 Java 类和一个 XML 文件。

我的问题是:

  1. 我应该在哪里保存这些 .java 文件? 我使用的是 NetBeans 6.5,因此默认值为“我的文档”。
  2. 我应该为 XML 文件命名什么?

我正在使用 XAMPP,因此文件 WSDL.xml 我放入 xampp/httdocs 但当我打开 127.0.0.1:9876[/]ts?wsdl 它说找不到页面。

注意:我不需要需要知道如何创建 Java 类。 我需要知道将定义类的文件放在哪里。

In a textbook exercise, we make 3 Java classes and an XML file.

My questions are:

  1. Where should I save these .java files? I'm using NetBeans 6.5 so the default is My Documents.
  2. What should I name the XML file?

I am using XAMPP so the file WSDL.xml I put in xampp/httdocs but when I open 127.0.0.1:9876[/]ts?wsdl it says page not found.

Note: I do not need to know how to create a Java class. I need to know where to put the file in which the class is defined.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

秋日私语 2024-07-28 07:22:31

主观意见:
如果您不知道诸如将 java 文件放入正确的目录之类的基本知识,也许您应该首先尝试一些简单得多的示例,而不是创建一个 web
服务。

在 Netbeans 中,您可以创建 Java 项目,然后通过以下操作添加 Java 类
文件-> 新... -> Java-> Java 类

要了解如何使用 Netbeans,请访问:
http://netbeans.org/kb/

特别是“NetBeans IDE Java 快速入门教程” 可能会有所帮助开始。

此外,您不使用某种 XAMP 来运行 Java Web 应用程序,
但使用 Java Web 服务器,例如 GlassfishApache Tomcat
当您使用时,这两个服务器都与 Netbeans 捆绑在一起
Netbeans Java 配置文件(请参阅 Netbeans 下载页面 中的表格)

Subjective opinion:
If you don't know such basic things such as placing java files into right directories, perhaps, you should first try a few much simpler examples, than creating a web
service.

In Netbeans, you can create a Java project, than add Java classes by doing
File -> New... -> Java -> Java Class

To learn how to use Netbeans, visit:
http://netbeans.org/kb/

Especially "NetBeans IDE Java Quick Start Tutorial" might be helpful to start.

Furthermore, you don't run Java webapps with some kind of XAMP,
but with Java web servers such as Glassfish or Apache Tomcat.
Both these servers are bundled with Netbeans when you use
Netbeans Java profile (see table at Netbeans download page)

猥琐帝 2024-07-28 07:22:31

我认为你应该遵循 ivan_ivanovich_ivanoff 的建议并从基础开始。

完成此操作后,您可能想回到此处阅读我对问题的回答 Stack Overflow:简单Java Web 服务。 它假设您知道如何编译 Java 类以及如何将其打包到 JAR 中,但由于这些是非常基本的任务,您无论如何都必须学习,因此它可能会帮助您启动并运行 Web 服务。

I think you should follow ivan_ivanovich_ivanoff's adive and start with the basics.

When you have done that, you might want to come back here and read my answer to the question Stack Overflow: Simple Java web services. It assumes you know how to compile a Java class and how to package it into a JAR, but since these are pretty basic tasks you have to learn anyhow, it might help you getting your web service up and running.

挽清梦 2024-07-28 07:22:31

查看随本书提供的示例代码

Look at the example code provided with the book.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文