开发者社区> 问答> 正文

java服务端响应不了post请求

package net.shopxx.aa;

import java.io.IOException;
 import java.util.HashMap;
 import java.util.Map;

import javax.servlet.ServletException;
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;

import net.shopxx.util.JsonUtils;

import org.springframework.stereotype.Controller;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
 import org.springframework.web.bind.annotation.ResponseBody;
 import org.springframework.web.context.request.RequestAttributes;
 import org.springframework.web.context.request.RequestContextHolder;
 import org.springframework.web.context.request.ServletRequestAttributes;

@Controller("androidController")
 @RequestMapping("/user")
 public class LoginControl {
@RequestMapping(value="/signin", method = RequestMethod.POST)
public @ResponseBody
String login(String name,String password) {

    System.out.print("....\n");
    String j="hello";
    return JsonUtils.toJson(j);
}

上边是代码,没有具体功能的,我只需要Android端能连接上去服务端就可以了

展开
收起
爵霸 2016-06-14 11:10:11 3197 0
1 条回答
写回答
取消 提交回答
  • 服务端能否响应请求跟是否POST没有关系,主要在于是否真实的连接到服务器,且服务器已经启动;一般post主要是写操作,get是读取操作

    2019-07-17 19:37:02
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
Spring Cloud Alibaba - 重新定义 Java Cloud-Native 立即下载
The Reactive Cloud Native Arch 立即下载
JAVA开发手册1.5.0 立即下载