java 不支持方法“GET”

lsmepo6l  于 2023-08-01  发布在  Java
关注(0)|答案(3)|浏览(302)

当我发出HTTP POST请求时,屏幕上出现了此消息。我该如何解决这个问题?我不使用任何GET注解或请求。
HTPP请求:http://localhost:9000/user/register?用户名=a&密码=1
控制台错误
无法加载资源:服务器的响应状态为405(不允许方法)
JavaScript

  1. <script>
  2. document.getElementById("signupbtn").addEventListener("click",function(){
  3. const username = document.getElementById("username").value;
  4. const password = document.getElementById("password").value;
  5. const xhr = new XMLHttpRequest();
  6. xhr.open("POST","http://localhost:9000/user/register?username="+username+"&password="+password);
  7. xhr.send();
  8. })
  9. </script>

字符串
控制器

  1. @PostMapping("/register")
  2. ResponseEntity<String> addUser(@RequestParam("username") String username,@RequestParam("password") String password) {
  3. userService.addUser(username, password);
  4. return ResponseEntity.ok("User added succesfully");
  5. }


维修保养

  1. public void addUser(String username,String password){
  2. userRepository.save(new User(username,password));
  3. }

9w11ddsr

9w11ddsr1#

以下是REQBIN的解决方案
请参考链接,并执行代码,并在您的项目中应用

  1. let xhr = new XMLHttpRequest();
  2. xhr.open("POST", "https://reqbin.com/echo/post/json");
  3. let data = {
  4. "Id": 78912,
  5. "Customer": "Jason Sweet",
  6. };
  7. xhr.onload = () => console.log(xhr.status);
  8. xhr.send(data);

字符串

展开查看全部
2nc8po8w

2nc8po8w2#

问题是当我发送请求时。这是一个GET请求,而不是POST。我把PostMapping改成GetMapping问题就解决了。我认为对POST和GETMap存在误解

carvr3hs

carvr3hs3#

你的代码没有任何问题,它应该工作,除非你在你的应用程序安全配置中有限制,如(allowedMethods)

相关问题