Rest Web服务参数问题

时间:2017-06-28 06:41:25

标签: java rest

使用以下代码测试基本Web服务。当我传递普通字符串时,它可以正常工作 - 例如http://localhost.com:8080/CheckRest/rest/pmg?p1=xyz。它显示 HELLO xyz

但是当我添加'#'例如,它没有给出正确的输出 - http://localhost.com:8080/CheckRest/rest/pmg?p1=xyz#abc。然后显示 HELLO xyz 而不是 HELLO xyz#abc

package com.check.ws;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
import javax.ws.rs.core.MediaType;

@Path("/pmg")
public class CheckCall {

     @GET
      @Produces(MediaType.TEXT_PLAIN)
      public String sayPlainTextHello() {
        return " ";
      }

      // This method is called if XML is request
      @GET
      @Produces(MediaType.TEXT_XML)
      public String sayXMLHello() {
        return "<?xml version=\"1.0\"?>" + "<pmg> </pmg>";
      }

      // This method is called if HTML is request
      @GET
      @Produces(MediaType.TEXT_HTML)
      public String sayHtmlHello(@QueryParam("p1") String par1) {
        return "<html> <body> HELLO </body> </html>"+par1;
      }
}

1 个答案:

答案 0 :(得分:7)

井号/井号(#)表示URL fragment identifier的开头。如果您想在查询字符串中使用井号/井号,则需要对其进行网址编码,方法是将其替换为%23

http://localhost.com:8080/CheckRest/rest/pmg?p1=xyz%23abc