3

(以下のコードコードを参照してください)Eclipse環境のTomcatで実行でき、正常に動作します。以下をwarファイルにエクスポートし、以下を使用してManifest.MFを作成しました。

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

コードがEclipseで実行されると、サーバー側からの応答がコンソールに出力されます。

最後に私の質問(私の無知を許してください、私はこれにかなり新しいです):

戦争がTomcatサーバーにデプロイされたら、REST要求を送信するか、戦争を実行してサーバーの応答を表示するにはどうすればよいですか?

ライブサーバー上の: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;
}
}
4

1 に答える 1

8

WebアプリのURLは、アプリサーバー、構成ファイル、web.xml、およびアプリサーバー固有の構成などの多くの要因によって異なります。

しかし、場合によっては、これは「わからない場合に最初に試すこと」です(公式ではありませんが、「それは機能する」という経験則です)

http://hostnameOrIP:8080/WARFILENAMEWITHOUTEXTENSION
  • hostnameOrIP:ええと、ホスト名またはIPに置き換えるだけです
  • 8080をアプリサーバーのデフォルトポート(9001、9090、3000など)に置き換えます
  • WARFILENAMEWITHOUTEXTENSIONを、拡張子なしのwarファイル名に置き換えます。

これもまた、他に伝える方法がない場合は、非公式の最初の方法です...

于 2012-05-16T22:00:46.203 に答える