0

我正在尝试从我的 REST Web 服务的 url 请求中获取请求参数。@Path 能够映射方法。但是 QueryParam 无法从查询参数中获取值。

我的请求网址是

192.168.20.147:8080/NestRestApi/rest/hello/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所以exch不要使用。sym@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 回答