我想将简单的Rest API部署到webspphere应用程序服务器

时间:2019-01-11 02:15:41

标签: websphere-8

我还没有在Websphere Aplication Server上工作,我有一个简单的rest api,我想将其部署到Websphere Application Server。

需要从头开始了解websphere应用服务器的详细配置

想了解websphere应用服务器的工作方式,配置的端口号是什么,如果我对启动服务器的代码有任何疑问,如何访问日志。

1 个答案:

答案 0 :(得分:1)

各种各样的问题。 WebSphere在这里没有什么特别的地方。只需使用标准的Java EE rest api,不要使用Spring,因为它不会带来任何其他价值。

简化的步骤:

  • 使用@ApplicationPath("/api")创建课程
  • 使用@Path("/hello")创建服务类
  • 实施方法,例如

    @GET @Produces(MediaType.TEXT_PLAIN) public String getHello() { return "Hello from rest "; }

  • 打包为战争

  • 在服务器上安装(如果通过管理控制台在tWAS上,如果在WebSphere Liberty上置于dropins上)
  • 通过http://localhost:9080/warfileName/api/hello访问(假定默认安装端口)