gpt4 book ai didi

java - Restful : How to get access to Httpsession inside the Service class?

转载 作者:IT老高 更新时间:2023-10-28 21:22:08 27 4
gpt4 key购买 nike

我正在使用 Jersey restful web services 。这是我下面的代码

@Path(/test)
public class testService {
@POST
public String getData(Postdata postdata) {

}

}

我的问题是,在这个类中是否可以访问 httpSession 对象??

最佳答案

试试:

@POST
public String getData(Postdata postdata, @Context HttpServletRequest request) {
HttpSession session = request.getSession();
}

关于java - Restful : How to get access to Httpsession inside the Service class?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11831042/

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