0

REST Web サービスの URL リクエストからリクエスト パラメータを取得しようとしています。@Path はメソッドをマップできます。しかし、QueryParam はクエリ パラメータから値を取得できません。

私のリクエストURLは

192.168.20.147:8080/NestRestApi/休息/こんにちは/ScripInfo/MACLEAN1-11365/nse_cm/531335

package Rest;


import com.omnesys.nest.classes.CNestQuotes;
import com.omnesys.nest.constants.NESTerror;
import java.io.IOException;
import java.util.Vector;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.ws.rs.*;

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author maclean
 */
 @Path("/hello")
public class ScripInfo {

    /**
     *
     * @param AccountId
     * @param Exch
     * @param Symbol
     * @return
     * @throws ServletException
     * @throws IOException
     */
    @GET
  @Path("/ScripInfo/{AccountId}/{exch}/{sym}")
  @Produces(MediaType.APPLICATION_ATOM_XML)
  public String getScripInfo(@QueryParam("AccountId") String AccountId,@QueryParam("exch") String Exch, @QueryParam("sym") String Symbol) throws ServletException, IOException
  {
      CNestQuotes oNestQuote = new CNestQuotes();
       oNestQuote.sExchSeg=Exch;
      oNestQuote.sLoginId=AccountId;
      oNestQuote.sSymbol=Symbol;
  HttpServletRequest request = null;
  HttpServletResponse response = null;
            request.setAttribute("QuoteStruct", oNestQuote);

        RequestDispatcher dispatch =request.getServletContext().getRequestDispatcher("/NESTGetOMScripInfo") ;
        dispatch.include(request, response);

        Vector oResult = (Vector) request.getAttribute("NESToutObject");

       if (oResult == null || oResult.size() == 0 || oResult.contains(NESTerror.BAD_INPUT) || oResult.contains(NESTerror.NO_DATA) || oResult.contains(NESTerror.MSG_FAILURE)) {
           } else {
                    oNestQuote = (CNestQuotes) oResult.firstElement();
       }

        return null;
}
 }
4

2 に答える 2

4

、およびはクエリ パラメータAccountIdではなくパス パラメータなので、代わりに.exchsym@QueryParam@PathParam

于 2013-11-05T12:20:40.430 に答える
2

AccountId、exch、および sym に QueryParam を使用する代わりに、@PathParam を使用する必要があります。

JAX-RS では、@ PathParemを使用して、@Path 式で定義された URI パラメータの値を Java メソッドに注入できます。

/users/Query?name=Nasruddin 上記の URI パターンでは、クエリ パラメータは "nanme=Nasruddin" であり、@QueryParam ("url") で url 値を取得できます

于 2013-11-05T12:49:11.417 に答える