我正在使用Restful web Service。我尝试创建会话ID(来自您的示例)。您的示例工作正常。我刚刚做了一些更改(1. 添加参数到方法,在验证用户后创建会话ID ,我的方法类型为 POST )
它为我抛出错误(该方法返回空值)
这就是我的方法的样子
public String SessionId(
@Context HttpServletRequest req,
@PathParam("username") String username,
@PathParam("passwd") String passwd)
我提供了现有的用户名和密码。但仍然会抛出错误。
请告诉我,我做错了。先谢谢, 苏哈。
答案 0 :(得分:0)
https://stackoverflow.com/a/25885938/1561948
@Path("/helloworld")
public class HelloWorld {
@GET
@Produces("text/plain")
public String validateuser(@Context HttpServletRequest req) {
HttpSession session= req.getSession(true);
Object foo = session.getAttribute("uid");
if (foo!=null) {
System.out.println(foo.toString());
} else {
foo = "bar";
session.setAttribute("uid", "bar");
}
return foo.toString();
}
}