当前位置: 首页 > 知识库问答 >
问题:

Spring Boot-不支持请求方法'POST'

龙哲
2023-03-14

我在Spring Boot应用程序中遇到异常PageNotFound:请求方法'POST'不受支持

这是我的控制器:

@RestController
public class LoginController {

UserWrapper userWrapper = new UserWrapper();

@RequestMapping(value = "/api/login", method = RequestMethod.POST, headers = "Content-type: application/*")
public @ResponseBody ResponseEntity getCredentials(@RequestBody UserDTO userDTO) {

    User user = userWrapper.wrapUser(userDTO);
    if (userDTO.getPassword().equals(user.getPassword())) {
        return new ResponseEntity(HttpStatus.OK);
    } else {
        return new ResponseEntity(HttpStatus.BAD_REQUEST);
    }
  }
}

我正在通过localhost:8080/api/login发送post请求,但它不起作用。你知道吗?

编辑:

UserDTO:

public class UserDTO implements Serializable {

private String email;
private String password;
//getters and setters

我要发送:

{
   "email":"email@email.com",
   "password":"password"
}

共有3个答案

段干飞翮
2023-03-14

这是一个问题,如果你正在使用JPA。Spring引导存储库内置了所有的请求。所以你的请求必须匹配存储库请求。这是我发现的唯一一个有工作Spring引导POST的例子https://dzone.com/articles/crud-using-spring-data-rest关键是你必须匹配存储库Rest调用

您的存储库Iterface将看起来像这样,加上任何重写,没有impl类

public interface UseerRepository extends  CrudRepository<User, Integer>{
}

你的控制器看起来像这样。请注意请求值/users,它是末尾带有S的实体名称

@RestController
public class LoginController {

@RequestMapping("/api/login")//this will return the login page
public String home() {
    return "login";
}
UserWrapper userWrapper = new UserWrapper();
//this will do the post
@RequestMapping(value = "/users", method = RequestMethod.POST,    headers = "Content-type: application/*")
public @ResponseBody ResponseEntity getCredentials(@RequestBody UserDTO userDTO) {

User user = userWrapper.wrapUser(userDTO);
if (userDTO.getPassword().equals(user.getPassword())) {
    return new ResponseEntity(HttpStatus.OK);
} else {
    return new ResponseEntity(HttpStatus.BAD_REQUEST);
}
  }
}

您的应用程序配置文件应该像这样通知@ComponentScan no basepackage={"com"}如果您这样做,那么您的JPA将无法工作

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.context.annotation.PropertySource;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
import org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration;


@Configuration
@ComponentScan
@EnableJpaRepositories
@Import(RepositoryRestMvcConfiguration.class)
@EnableAutoConfiguration
@PropertySource("application.properties")
public class Application {

public static void main(String[] args) {
    SpringApplication.run(Application.class, args);         
}
}

如果您想覆盖存储库POST请求,请在控制器或服务类中执行,我希望我对其解释得足够好,但该示例确实有效,您不必再编写大量粗糙的代码

卢鸿彩
2023-03-14

我解决了我的问题。我从RequestMapping中删除了头文件,并为UserWrapper添加了@Autowired注释,现在一切都正常了。

郝冥夜
2023-03-14

我通过禁用CSRF解决了这个问题。

@Configuration
class SecurityConfig extends WebSecurityConfigurerAdapter {
    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http.csrf().disable();
    }
 }
 类似资料:
  • 我刚刚开始学习Java Spring Boot for REST API开发。在下面的代码中,GET方法可以正常工作,但POST不能。 在Postman应用程序中使用as 错误 在日志中我可以看到, maven的Java和springboot版本,

  • 我正在使用一个表单,当我点击提交时,它会点击下面的控制器。 我知道这个方法被击中了,因为我在其中放置了断点。然而,我仍然得到了上面提到的错误。 编辑:我已经发布了整个控制器,而不仅仅是方法。 Edit2:我的html表单如下: 我错过了什么?非常感谢任何帮助。

  • 我正在编写一个控制器来处理来自AJAX的帖子。我一直收到一个错误,那篇文章不受支持。我以前在尝试创建后控制器方法时从未遇到过以下错误,我希望有人能发现我在哪里搞砸了。 这是我为控制控制器中的帖子而编写的方法: 使用JQuery 1.10,这是请求它的Ajax调用: 我知道POST地址是正确的,因为将它转换成GET请求就可以了。此外,我还编写了其他POST请求,它们在同一个控制器类中也能正常工作。任

  • login.jsp 用户列表.jsp AppController.java 有2页:login.jsp-起始页,其中包括与登录和密码填充的形式-userlist.jsp结果列表“显示数据库中所有用户持久化”..首先显示登录页面,当我单击提交按钮时,我得到了这个错误:org . spring framework . web . servlet . pagenotfound-不支持请求方法“POST”

  • 下面是我的方法 当调用GET request时,它的工作很好,但是当我们调用POST request和request payload checkout_token=xxxx时,我得到以下错误 编辑 甚至我尝试删除所有参数,但仍然没有运气到目前为止。

  • 我试图在这里输入代码`@RequestMapping(value=“/test”,method=RequestMethod.POST),但错误代码为 网状物xml是 springmvc.xmlindex.jsp I input submit botton brower为错误HTTP Status 405-请求方法'GET'不受支持类型状态报告消息请求方法'GET'不受支持描述指定的HTTP方法不允

  • 我有Java控制器: 并遇到以下问题:警告14068--[nio-8080-exec-3].w.s.m.s.defaultHandlerExceptionResolver:Resolved[org.springframework.web.httpRequestMethodNotSupportedException:Request method'DELETE'not support]它发生在我发送删

  • 如何解决这个问题?