11

我需要用 Jersey 做一个代理 API 服务。我需要在球衣方法中有完整的请求 URL。我不想指定所有可能的参数。

例如:

@GET
@Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
@Path("/media.json")
public  String getMedia( ){
    // here I want to get the full request URL like /media.json?param1=value1&param2=value2
}

我该怎么做?

4

4 回答 4

18

在 Jersey 2.x 中(注意它使用 HttpServletRequest 对象):

@GET
@Path("/test")
public Response test(@Context HttpServletRequest request) {
    String url = request.getRequestURL().toString();
    String query = request.getQueryString();
    String reqString = url + "?" + query;
    return Response.status(Status.OK).entity(reqString).build();
}
于 2013-10-25T12:21:04.210 回答
7

尝试 UriInfo 如下,

    @POST
    @Consumes({ MediaType.APPLICATION_JSON})
    @Produces({ MediaType.APPLICATION_JSON})
    @Path("add")
    public Response addSuggestionAndFeedback(@Context UriInfo uriInfo, Student student) {

            System.out.println(uriInfo.getAbsolutePath());

      .........
    }

输出:- https://localhost:9091/api/suggestionandfeedback/add

您也可以尝试以下选项

在此处输入图像描述

于 2017-12-29T12:38:41.573 回答
4

如果你需要一个智能代理,你可以获取参数,过滤它们并创建一个新的 url。

@GET
@Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
@Path("/media.json")
public  String getMedia(@Context HttpServletRequest hsr){
    Enumeration parameters = hsr.getParameterNames();
    while (parameters.hasMoreElements()) {
        String key = (String) parameters.nextElement();
        String value = hsr.getParameter(key);
    //Here you can add values to a new string: key + "=" + value + "&"; 
    }

}
于 2013-10-25T12:29:42.930 回答
0

您可以使用泽西过滤器。

public class HTTPFilter implements ContainerRequestFilter {

private static final Logger logger = LoggerFactory.getLogger(HTTPFilter.class);

    @Override
    public void filter(ContainerRequestContext containerRequestContext) throws IOException {

        logger.info(containerRequestContext.getUriInfo().getPath() + " endpoint called...");
        //logger.info(containerRequestContext.getUriInfo().getAbsolutePath() + " endpoint called...");

    }
}

之后你必须在 http 配置文件中注册它或者只是扩展 ResourceConfig 类。这就是你如何在 http config 类中注册它

public class HTTPServer {

    public static final Logger logger = LoggerFactory.getLogger(HTTPServer.class);

    public static void init() {

        URI baseUri = UriBuilder.fromUri("http://localhost/").port(9191).build();
        ResourceConfig config = new ResourceConfig(Endpoints.class, HTTPFilter.class);
        HttpServer server = JdkHttpServerFactory.createHttpServer(baseUri, config);

        logger.info("HTTP Server started");

    }

}
于 2018-02-26T08:09:56.873 回答