如何在eclipse下在glassfish上部署REST服务?

发布于 2024-11-06 06:27:43 字数 652 浏览 0 评论 0原文

我编写了一个简单的 REST 服务类,我需要在安装在 Eclipse 上的 glassfish 服务器下部署并运行它。

我需要执行哪些步骤才能将此 Restlet 服务上线并通过浏览器访问它?

这是代码:

import javax.ws.rs.*;
import javax.ws.rs.core.*;

@Path("/myApplication")
public class MailRestlet {
    @SuppressWarnings("unused")
    @Context
    private UriInfo context;

    /**
     * Default constructor. 
     */
    public MyRestlet() {
        // TODO Auto-generated constructor stub
    }

    @GET
    @Produces("text/html")
    public String getHtml() {
        return "<html><body><h1>Hello World!!</h1>The service is online!!</body></html>";
    }
}

I've written a simple REST service class, and I need to deploy and run it under glassfish server, installed on my eclipse.

What steps have I to do in order to put this restlet service online and reach it from my browser?

This is the code:

import javax.ws.rs.*;
import javax.ws.rs.core.*;

@Path("/myApplication")
public class MailRestlet {
    @SuppressWarnings("unused")
    @Context
    private UriInfo context;

    /**
     * Default constructor. 
     */
    public MyRestlet() {
        // TODO Auto-generated constructor stub
    }

    @GET
    @Produces("text/html")
    public String getHtml() {
        return "<html><body><h1>Hello World!!</h1>The service is online!!</body></html>";
    }
}

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

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

发布评论

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

评论(2

薄暮涼年 2024-11-13 06:27:43

您还需要配置 web.XML 文件,例如,如 http://download.oracle.com/docs/cd/E19776-01/820-4867/ggrby/index.html

还有一种方法可以避免 web.XML 更改,通过扩展来自 jaxrs 的应用程序类...

You also need to configure the web.XML file, for example, as in http://download.oracle.com/docs/cd/E19776-01/820-4867/ggrby/index.html

There is also a way to avoid web.XML change, by extending the Application class from jaxrs...

相对绾红妆 2024-11-13 06:27:43

作为使用 web.xml 文件配置端点的替代方法,您可以按如下所述扩展 Application 类 此处

在 Eclipse 中,您可以通过以下方式在服务器上部署:

  • 右键单击项目,然后运行为 >在服务器上运行。
  • 在接下来的屏幕上,从已连接到 Eclipse 的服务器列表中选择您的服务器,然后单击下一步
  • 确保项目列在“已配置”下,然后单击“完成”。
  • 您还可以将 Eclipse 设置为在更改代码时自动发布到 GlassFish。双击服务器视图中的 GlassFish 服务器。展开发布可展开列表并选择资源更改时自动发布

As an alternative to configuring the end point using the web.xml file, you can extend the Application class as described here.

From in Eclipse, you can deploy on the server by:

  • Right clicking the project and then Run As > Run on Server.
  • Select your server from the list of servers you have connected to Eclipse on the screen that follows and click Next.
  • Ensure the project is listed under Configured and click Finish.
  • You can also set Eclipse to automatically publish to GlassFish when you change the code. Double click the GlassFish Server on the Server view. Expand the Publishing expandable list and select Automatically publish when resources change.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文