gpt4 book ai didi

java - 注入(inject)调用者 IP 地址和端口在 Java Jersey RESTful Web 服务中不起作用

转载 作者:行者123 更新时间:2023-12-01 09:56:56 25 4
gpt4 key购买 nike

我正在尝试获取客户端的 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);

这是我的类(class):

@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();
}

}

关于java - 注入(inject)调用者 IP 地址和端口在 Java Jersey RESTful Web 服务中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37139451/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com