簡體   English   中英

注入呼叫者ip地址和端口在Java Jersey RESTful Web服務中不起作用

[英]Inject caller ip address and port not working in Java Jersey RESTful web service

我正在嘗試獲取客戶端的IP地址和端口,但是在部署代碼時,它會提供以下輸出:

May 10, 2016 2:50:56 PM com.sun.jersey.spi.inject.Errors processErrorMessages
SEVERE: The following errors and warnings have been detected with resource and/or provider classes:
SEVERE: Missing dependency for method public javax.ws.rs.core.Response resources.Login.loginUser(java.lang.String,javax.servlet.http.HttpServletRequest) at parameter at index 1
SEVERE: Method, public javax.ws.rs.core.Response resources.Login.loginUser(java.lang.String,javax.servlet.http.HttpServletRequest), annotated with POST of resource, class resources.Login, is not recognized as valid resource method.
Exception in thread "main" com.sun.jersey.spi.inject.Errors$ErrorMessagesException
at com.sun.jersey.spi.inject.Errors.processErrorMessages(Errors.java:170)
at com.sun.jersey.spi.inject.Errors.postProcess(Errors.java:136)
at com.sun.jersey.spi.inject.Errors.processWithErrors(Errors.java:199)
at com.sun.jersey.server.impl.application.WebApplicationImpl.initiate(WebApplicationImpl.java:773)
at com.sun.jersey.api.container.ContainerFactory.createContainer(ContainerFactory.java:172)
at com.sun.jersey.api.container.ContainerFactory.createContainer(ContainerFactory.java:264)
at com.sun.jersey.api.container.ContainerFactory.createContainer(ContainerFactory.java:246)
at com.sun.jersey.api.container.httpserver.HttpServerFactory.create(HttpServerFactory.java:117)
at com.sun.jersey.api.container.httpserver.HttpServerFactory.create(HttpServerFactory.java:92)
at gateway.GatewayRestServer.main(GatewayRestServer.java:30)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:144)

這是我的REST服務器中的代碼

import javax.servlet.http.HttpServletRequest;
import javax.ws.rs.*;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;

...

@POST
@Path("/post")
@Consumes(MediaType.TEXT_PLAIN)
public Response loginUser(String username, @Context HttpServletRequest request) {
    Loog.i(this, "Login di " + username);
    String netIP = request.getRemoteAddr();
    int netPort = request.getRemotePort();
    ...
}

如果我刪除@Context HttpServletRequest請求,它會完美運行。

您不需要在參數中傳遞@context。

這是我的界面:

@POST
@Path("/lookup")
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
List<Client> searchClient(Criterias cr);

這是我的課:

@Stateless
public class XServiceImpl implements XService {

    @Context
    private HttpServletRequest request;

    @Override
    @Public
    public List<Client> searchClient(Criterias cr) {

        try {
            List<Client> baux = null;
            String lang = RequestContext.getLocale(request).getLanguage();
            cr.setLang(lang);

        } catch (SQLException e) {
            LOGGER.log(Level.SEVERE, e.getLocalizedMessage());
            throw new ServiceException();
        } finally {
            reqInfo.logExecutionTime();
        }

    }

好的,我知道了:

@Context
private HttpContext request;

@POST
@Consumes(MediaType.TEXT_PLAIN)
public Response loginUser(String username) {

    String netIP = request.getRequest().getRequestUri().getHost().toString();
    int netPort = request.getRequest().getRequestUri().getPort();
    ...
}

注入對象的類型錯誤,我使用com.sun.jersey.api.core.HttpContext; 代替。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM