HTTP状态码405 - 请求方法'PUT'不受支持。

14

我有以下控制器:

@RestController
public class RestaurantController {
    @Autowired
    RestaurantService restaurantService;
    @RequestMapping(value = "/restaurant/", method = RequestMethod.GET)
    public ResponseEntity<List<Restaurant>> listAllRestaurants() {
        System.out.println("Fetching all restaurants");
        List<Restaurant> restaurants = restaurantService.findAllRestaurants();
        if(restaurants.isEmpty()){
            return new ResponseEntity<List<Restaurant>>(HttpStatus.NO_CONTENT);//You many decide to return HttpStatus.NOT_FOUND
        }
        return new ResponseEntity<List<Restaurant>>(restaurants, HttpStatus.OK);
    }
    @RequestMapping(value = "/restaurant/{id}", method = RequestMethod.PUT)
    public ResponseEntity<Restaurant> updateRestaurant(@PathVariable("id") int id, @RequestBody Restaurant restaurant) {
        System.out.println("Updating Restaurant " + id);

        Restaurant currentRestaurant = restaurantService.findById(id);

        if (currentRestaurant==null) {
            System.out.println("Restaurant with id " + id + " not found");
            return new ResponseEntity<Restaurant>(HttpStatus.NOT_FOUND);
        }

        currentRestaurant.setName(restaurant.getName());
        currentRestaurant.setDescription(restaurant.getDescription());
        currentRestaurant.setIcon(restaurant.getIcon());

        restaurantService.updateRestaurant(currentRestaurant);
        return new ResponseEntity<Restaurant>(currentRestaurant, HttpStatus.OK);
    }
}

以下是翻译的结果:

这是我的PostMan调用记录。 首先,我发出GET请求以获取所有餐厅,并且它正常工作。 在此输入图像描述 其次,我试图更新对象,但是出现了以下错误。 在此输入图像描述 在Tomcat 8.0.32上,我得到了以下日志:

13-Feb-2016 16:55:09.442 WARNING [http-apr-8080-exec-9] org.springframework.web.servlet.PageNotFound.handleHttpRequestMethodNotSupported Request method 'PUT' not supported

我不明白为什么会出现这种情况。 这是我的依赖项:

<properties>
        <springframework.version>4.1.6.RELEASE</springframework.version>
        <springsecurity.version>4.0.1.RELEASE</springsecurity.version>
        <hibernate.version>4.3.6.Final</hibernate.version>
        <mysql.connector.version>5.1.31</mysql.connector.version>
        <jackson.version>2.6.3</jackson.version>
        <joda-time.version>2.3</joda-time.version>
        <testng.version>6.9.4</testng.version>
        <mockito.version>1.10.19</mockito.version>
        <h2.version>1.4.187</h2.version>
        <dbunit.version>2.2</dbunit.version>
    </properties>

    <dependencies>
        <!-- Spring -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <version>${springframework.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-web</artifactId>
            <version>${springframework.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>${springframework.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-tx</artifactId>
            <version>${springframework.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-orm</artifactId>
            <version>${springframework.version}</version>
        </dependency>
        <!-- Hibernate -->
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-core</artifactId>
            <version>${hibernate.version}</version>
        </dependency>

        <!-- jsr303 validation -->
        <dependency>
            <groupId>javax.validation</groupId>
            <artifactId>validation-api</artifactId>
            <version>1.1.0.Final</version>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-validator</artifactId>
            <version>5.1.3.Final</version>
        </dependency>

        <!-- MySQL -->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>${mysql.connector.version}</version>
        </dependency>

        <!-- Joda-Time -->
        <dependency>
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
            <version>${joda-time.version}</version>
        </dependency>

        <!-- To map JodaTime with database type -->
        <dependency>
            <groupId>org.jadira.usertype</groupId>
            <artifactId>usertype.core</artifactId>
            <version>3.0.0.CR1</version>
        </dependency>
        <!-- Spring Security -->
        <dependency>
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-web</artifactId>
            <version>${springsecurity.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-config</artifactId>
            <version>${springsecurity.version}</version>
        </dependency>
        <!-- Servlet+JSP+JSTL -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>3.1.0</version>
        </dependency>
        <dependency>
            <groupId>javax.servlet.jsp</groupId>
            <artifactId>javax.servlet.jsp-api</artifactId>
            <version>2.3.1</version>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>
        <!-- Need this for json to/from object -->
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-core</artifactId>
            <version>${jackson.version}</version>
        </dependency>

        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <version>${jackson.version}</version>
        </dependency>
        <!-- Testing dependencies -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <version>${springframework.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>${testng.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <version>${mockito.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
            <version>${h2.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>dbunit</groupId>
            <artifactId>dbunit</artifactId>
            <version>${dbunit.version}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

If more information is needed please tell me! Thanks.
Edit 1:
@Configuration
@EnableWebSecurity
public class SecurityConfiguration extends WebSecurityConfigurerAdapter {


    @Autowired
    public void configureGlobalSecurity(AuthenticationManagerBuilder auth) throws Exception {
        auth.inMemoryAuthentication().withUser("bill").password("user").roles("USER");
        auth.inMemoryAuthentication().withUser("admin").password("admin").roles("ADMIN");
        auth.inMemoryAuthentication().withUser("dba").password("dba").roles("ADMIN","DBA");
    }

    @Override
    protected void configure(HttpSecurity http) throws Exception {

      http.authorizeRequests()
        .antMatchers("/", "/home","/restaurant/**").permitAll()
        .antMatchers("/list").access("hasRole('USER')")
        .antMatchers("/list").access("hasRole('ADMIN')")
        .antMatchers("/admin/**").access("hasRole('ADMIN')")
        .antMatchers("/db/**").access("hasRole('ADMIN') and hasRole('DBA')")
        .and().formLogin().loginPage("/login")
        .usernameParameter("ssoId").passwordParameter("password")
        .and().csrf()
        .and().exceptionHandling().accessDeniedPage("/Access_Denied");
    }
}

编辑2:

2016年2月14日12:30:56 调试 FilterChainProxy:324 - 附加过滤器链中位置1/12的餐厅/1;触发过滤器:'WebAsyncManagerIntegrationFilter' 2016年2月14日12:30:56 调试 FilterChainProxy:324 - 附加过滤器链中位置2/12的餐厅/1;触发过滤器:'SecurityContextPersistenceFilter' 2016年2月14日12:30:56 调试 HttpSessionSecurityContextRepository:159 - 当前没有HttpSession存在 2016年2月14日12:30:56 调试 HttpSessionSecurityContextRepository:101 - HttpSession中没有可用的SecurityContext:null。将创建一个新的。 2016年2月14日12:30:56 调试 FilterChainProxy:324 - 附加过滤器链中位置3/12的餐厅/1;触发过滤器:'HeaderWriterFilter' 2016年2月14日12:30:56 调试 HstsHeaderWriter:128 - 没有注入HSTS标头,因为它不匹配请求匹配器org.springframework.security.web.header.writers.HstsHeaderWriter$SecureRequestMatcher@3ded3d8a 2016年2月14日12:30:56 调试 FilterChainProxy:324 - 附加过滤器链中位置4/12的餐厅/1;触发过滤器:'CsrfFilter' 2016年2月14日12:30:56 调试 CsrfFilter:106 - 找到无效的CSRF令牌http://localhost:8080/SpringSecurityCusotmLoginFormAnnotationExample/restaurant/1 2016年2月14日12:30:56 调试 DispatcherServlet:861 - 名称为'dispatcher'的DispatcherServlet正在处理对[/SpringSecurityCusotmLoginFormAnnotationExample/Access_Denied]的PUT请求 2016年2月14日12:30:56 调试 RequestMappingHandlerMapping:294 - 查找路径/Access_Denied的处理程序方法 2016年2月14日12:30:56 调试 ExceptionHandlerExceptionResolver:134 - 解析来自处理程序[null]的异常:org.springframework.web.HttpRequestMethodNotSupportedException:不支持请求方式'PUT' 2016年2月14日12:30:56 调试 ResponseStatusExceptionResolver:134 - 解析来自处理程序[null]的异常:org.springframework.web.HttpRequestMethodNotSupportedException:不支持请求方式'PUT' 2016年2月14日12:30:56 调试 DefaultHandlerExceptionResolver:134 - 解析来自处理程序[null]的异常:org.springframework.web.HttpRequestMethodNotSupportedException:不支持请求方式'PUT' 2016年2月14日12:30:56 警告 PageNotFound:198 - 请求方式'PUT'不受支持 2016年2月14日12:30:56 调试 HttpSessionSecurityContextRepository:337 - SecurityContext为空或匿名内容——上下文将不会存储在HttpSession中。 2016年2月14日12:30:56 调试 DispatcherServlet:1034 - 名称为'dispatcher'的DispatcherServlet将空ModelAndView返回给:假定HandlerAdapter完成了请求处理 2016年2月14日12:30:56 调试 DispatcherServlet:996 - 请求处理成功完成 2016年2月14日12:30:56 调试 DefaultListableBeanFactory:248 - 返回单例bean 'delegatingApplicationListener'的缓存实例

1
听起来 PUT 动词已被 Apache Tomcat 禁用。在 Google 上搜索禁用 Apache Tomcat 中的 PUT,你会看到很多帖子都在谈论如何禁用。然后你可以查看这些设置是否存在于 (a) 你的应用程序中,或更可能是 (b) 你的 Apache Tomcat 设置中。 - EJK
@EJK 这也与我的 Spring Security 配置有关吗? - KostasC
@EJK,我已经尝试了另一个使用PUT、DELETE的Web应用程序,并且它可以正常工作! - KostasC
12个回答

20

我曾经遇到过同样的错误,但是我的错误原因是我省略了ID作为URL参数。我省略了它是因为ID在JSON中已经存在。

当我将.../restaurant改成...restaurant/1时,错误消失了。


1
LOL - 感谢 progonkpa 的提醒,从小事做起。我的 ID 为空。 - Forrest
我曾经遇到过类似的问题。我的Put请求url是/task/update,并且在RequestBody中包含了完整的json对象,但是当我将其改为/task/{id}时,它按预期工作了。 - mal

14

尝试将org.springframework.web的日志级别调高到DEBUG。这样做可以让您更深入地了解Spring如何处理请求,希望能为您(或我们)提供一些更多的线索以修复它。

如果您正在使用Spring Boot,则只需将此行添加到您的application.properties文件中:

logging.level.org.springframework.web=DEBUG

在查看附加日志后进行编辑:

'PUT'不支持的消息有点误导人,实际问题出现在此之前。您没有有效的CSRF令牌。您是如何提交请求的?看起来您正在使用PostMan工具(但我对此工具不熟悉),而不是直接从网页提交表单。也许有一些方法可以使用该工具向您的请求添加令牌。如果不使用工具-直接从网页提交表单,是否可以正常工作?


是的,你说得对!我从网页上操作,并按照这个链接 https://dev59.com/vobca4cB1Zd3GeqPZLXe 进行了操作。现在我收到了400错误请求! - KostasC
谢谢,问题已解决。在我的情况下,我忘记在控制器上附加“@ResponseBody”。愚蠢的错误 :^( - kimchoky
经过长时间的搜索,我终于意识到了导致我遇到类似问题的错误原因。显然,整个CORS问题是由我的错误引起的,允许此日志记录的建议使我能够意识到这一点。非常好的答案。 - Barrosy

3

我在Spring Boot中使用了一份基本的CRUD应用程序。在PUT映射中,我以错误的方式传递了路径变量。

@PutMapping(path ={"studentId"}) 被替换为 @PutMapping(path ="{studentId}")


这正是我所面临的问题!现在我意识到这可能是初学者常犯的错误。谢谢! - Meet Sinojia

1

默认情况下,在WebMvcAutoConfiguration中,HttpPutFormContentFilter未配置,因此出现了问题。

在Spring Boot [1.3.0)版本中已经修复并且正常工作。因此,您可以尝试更新您的Spring Boot版本或手动配置此过滤器以使其正常工作。

问题参考
另一个Stackoverlow参考

希望能有所帮助。


1
基本上,这是由于URL中缺少参数或URL错误导致的。
在我的情况下,我忘记在URL中添加"id"即"1"参数。
解决方案:http://localhost:8080/products/1
当我在"/products"后添加了这个参数1时,错误消失了。
(您可以根据您的项目进行相应的尝试。)

0

不要发送请求到/restaurant/1/,而是发送到/restaurant/1


1
这个问题与URL问题无关。 - Nitesh Singh Rajput

0
在我的情况下,我不得不使用一个带有@RequestBody的模型类来处理补丁控制器。

0
在我的情况下,我用post而不是put收到了正确的响应。

0
我认为你的模型应该实现Serializable接口并拥有默认构造函数。
对于我来说,将上述内容添加到我的模型类中并在控制器方法参数上使用@RequestBody解决了问题。

0

我曾经遇到过同样的问题,但后来通过在后端服务器中更正<@PutMapping("/user/{id} ")>中的put mapping路径为<@PutMapping("/user/{id}")>来解决它。确保id后面没有空格。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接