gpt4 book ai didi

java - 部署和运行 war 文件

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:14:29 24 4
gpt4 key购买 nike

(请参阅下面的代码)我能够在 eclipse 环境中的 Tomcat 上运行它,并且它可以正常工作。我已将以下内容导出到 war 文件并创建了一个 Manifest.MF:

Manifest-Version: 1.0
Main-Class: com.process.Test

当代码在 Eclipse 中运行时,服务器端的响应会输出到控制台。

现在终于是我的问题了(请原谅我的无知,我对此还很陌生):

在我的 Tomcat 服务器上部署 war 后,如何发送 REST 请求或运行 war 并显示服务器响应?

在实时服务器上,什么等同于:http://localhost:8080/rest/xml/list?

Web.xml

   <?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>com.process.Test</display-name>
<servlet>
<servlet-name>Jersey REST Service</servlet-name>
<servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>com.sun.jersey.config.property.packages</param-name>
<param-value>com.process.Test</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Jersey REST Service</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
</web-app>

客户端代码:

import java.net.URI; 
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.UriBuilder;
import com.sun.jersey.api.client.Client;
//import com.sun.jersey.api.client.ClientResponse;
import com.sun.jersey.api.client.WebResource;
import com.sun.jersey.api.client.config.ClientConfig;
import com.sun.jersey.api.client.config.DefaultClientConfig;

public class Test
{
public static void main(String[] args) {

//Instead on using Apache Client
//used default Jersey client
//to send requests
ClientConfig config = new DefaultClientConfig();
Client client = Client.create(config);
String _package = "api.amebatv.com";
WebResource service = client.resource(getBaseURI(_package));

//runRequest(service,"indexpath");
runRequest(service,"list");
}

/*
* For testing purposes the base URI is :http://localhost:8080/package name
* Will change to domain name for production code
*/
private static URI getBaseURI(String _package){
return UriBuilder.fromUri(
"http://localhost:8080/api.process.com").build();
}


private static void runRequest(WebResource service,String path){
String response = service.path("rest/xml/"+path).accept(MediaType.APPLICATION_XML).get(String.class);
System.out.println("Post Response :"+response);
}

}

服务器端:

@Path("/xml")

public class Service {

// List of video objects
private ArrayList<Video> videolist;
//Parser object, parses xml into video objects
private Parser parser = new Parser();


/*
* Constructor
* Parse XML and create video list on call
*/
public Service(){
parser.createXML();
videolist = parser.getList();
}

/************************************************
*GET
* Path: /indexpath
* list of all only <video> items
* @return : ArrayList of Video objects
***********************************************/
@GET
@Path("/list")
@Produces(MediaType.APPLICATION_XML)
public List<Video> getCustomerInXML()
{
return videolist;
}
}

最佳答案

Web 应用程序的 URL 取决于许多因素,应用程序服务器、配置文件、web.xml 和应用程序服务器特定配置。

但在某些情况下,这是“如果你不知道,首先要尝试的事情”(不是官方的,但“它有效”的经验法则)

http://hostnameOrIP:8080/WARFILENAMEWITHOUTEXTENSION
  • hostnameOrIP:好吧,只需替换为您的主机名或 IP
  • 8080 替换为您的应用服务器的默认端口(9001、9090、3000 等...)
  • 再次将 WARFILENAMEWITHOUTEXTENSION 替换为不带扩展名的 war 文件名

这又是一种非官方的、先尝试的方式,如果您没有其他方式可以告诉...

关于java - 部署和运行 war 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10627107/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com