我有以下控制器:
@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中,我得到以下日志:
2016年2月13日16:55:09.442警告[http-apr-8080-exec-9] org.springframework.web.servlet.PageNotFound.handleHttpRequestMethodNotSupported 请求方法&#39; PUT&#39;不支持
我不明白这是多么可能。 这是我的依赖:
<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>
如果需要更多信息,请告诉我!感谢。
编辑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-02-14 12:30:56 DEBUG FilterChainProxy:324 - / restaurant / 1 at 在附加过滤链中的位置1的12;射击过滤器: &#39; WebAsyncManagerIntegrationFilter&#39;
2016-02-14 12:30:56 DEBUG FilterChainProxy:324 - / restaurant / 1,位于第2位,共12位 过滤链;触发过滤器:&#39; SecurityContextPersistenceFilter&#39;
2016-02-14 12:30:56 DEBUG HttpSessionSecurityContextRepository:159 - 目前没有HttpSession
2016-02-14 12:30:56 DEBUG HttpSessionSecurityContextRepository:101 - 没有SecurityContext 可从HttpSession获得:null。将创建一个新的。
2016-02-14 12:30:56 DEBUG FilterChainProxy:324 - / restaurant / 1 at 在附加过滤链中的位置3的12;射击过滤器: &#39; HeaderWriterFilter&#39;
2016-02-14 12:30:56 DEBUG HstsHeaderWriter:128 - 不注入HSTS标头,因为它与requestMatcher不匹配 org.springframework.security.web.header.writers.HstsHeaderWriter$SecureRequestMatcher@3ded3d8a
2016-02-14 12:30:56 DEBUG FilterChainProxy:324 - / restaurant / 1 at 在附加过滤链中的位置4的12;射击过滤器: &#39; CsrfFilter&#39;
2016-02-14 12:30:56 DEBUG CsrfFilter:106 - CSRF无效 找到的令牌 http://localhost:8080/SpringSecurityCusotmLoginFormAnnotationExample/restaurant/1
2016-02-14 12:30:56 DEBUG DispatcherServlet:861 - DispatcherServlet 名字&#39;调度员&#39;处理PUT请求 [/ SpringSecurityCusotmLoginFormAnnotationExample / ACCESS_DENIED]
2016-02-14 12:30:56 DEBUG RequestMappingHandlerMapping:294 - 寻找 up / access_Denied的处理程序方法
2016-02-14 12:30:56 DEBUG ExceptionHandlerExceptionResolver:134 - 解决异常 handler [null]: org.springframework.web.HttpRequestMethodNotSupportedException: 请求方法&#39; PUT&#39;不支持
2016-02-14 12:30:56 DEBUG ResponseStatusExceptionResolver:134 - 解决处理程序中的异常 [空值]: org.springframework.web.HttpRequestMethodNotSupportedException: 请求方法&#39; PUT&#39;不支持
2016-02-14 12:30:56 DEBUG DefaultHandlerExceptionResolver:134 - 解决处理程序中的异常 [空值]: org.springframework.web.HttpRequestMethodNotSupportedException: 请求方法&#39; PUT&#39;不支持
2016-02-14 12:30:56警告 PageNotFound:198 - 请求方法&#39; PUT&#39;不支持
2016-02-14 12:30:56 DEBUG HttpSessionSecurityContextRepository:337 - SecurityContext为空或内容为匿名 - 上下文不会 存储在HttpSession中。
2016-02-14 12:30:56 DEBUG DispatcherServlet:1034 - 返回Null ModelAndView DispatcherServlet,名称为&#39; dispatcher&#39 ;:假设为HandlerAdapter 完成请求处理
2016-02-14 12:30:56 DEBUG DispatcherServlet:996 - 成功完成请求
2016-02-14 12:30:56 DEBUG DefaultListableBeanFactory:248 - 返回缓存 单例bean的实例&#39; delegatingApplicationListener&#39;
2016-02-14 12:30:56 DEBUG HttpSessionSecurityContextRepository:337 - SecurityContext为空或内容为匿名 - 上下文不会 存储在HttpSession中。
2016-02-14 12:30:56 DEBUG SecurityContextPersistenceFilter:105 - SecurityContextHolder现在 已完成,请求处理已完成
答案 0 :(得分:6)
尝试将org.springframework.web
的日志记录级别调高为DEBUG
。这将让您深入了解Spring如何处理请求。希望它会给你(或我们)更多关于如何解决它的线索。
如果您使用的是Spring Boot,只需将此行添加到 application.properties 文件中:
logging.level.org.springframework.web=DEBUG
看到其他日志记录后进行编辑:
'PUT'不支持的消息有点误导。真正的问题出现在此之前。您没有有效的CSRF令牌。你是如何提交请求的?看起来您正在使用 PostMan 工具(但我不熟悉此工具),而不是直接从网页提交表单。您可以通过某种方式使用该工具将令牌添加到您的请求中。没有工具它是否有用 - 直接从网页提交表单?
答案 1 :(得分:5)
我有同样的错误,但对我来说,这是因为我已经将ID作为URL参数进行了省略。我之所以这么做是因为ID存在于JSON主体中。
当我把... /餐厅改为餐厅/ 1时,错误就消失了。
答案 2 :(得分:1)
而不是向/restaurant/1/
发送请求,请将其发送至/restaurant/1
答案 3 :(得分:1)
所以这主要是因为网址中缺少参数或网址错误。
就我而言,我忘记了 URL 中的“id”即“1”参数。
解决方案:http://localhost:8080/products/1
当我在 /products 之后添加这个参数 1 时,错误消失了。
(您可以尝试根据您的项目使用它。)
答案 4 :(得分:0)
默认情况下,在WebMvcAutoConfiguration
中,未配置HttpPutFormContentFilter
因此问题。
它固定在春季启动[1.3.0)
版本并且运行正常。因此,您可以尝试更新spring-boot版本或手动配置此过滤器以使其正常工作。
Issue reference。
Another Stackoverlow reference
希望它有所帮助。
答案 5 :(得分:0)
如果您不需要csrf,则可以这样做。
@Configuration
@EnableWebSecurity
public class SpringSecurityConfiguration extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.csrf().disable();
}
}
答案 6 :(得分:0)
我认为您的模型应该实现Serializable接口,并且应该具有默认的构造函数。
对我来说,问题已解决,方法是在Model类中添加上述内容,在Controller方法参数中添加@RequestBody。
答案 7 :(得分:0)
如果无法反序列化对象,则还会返回HTTP 405错误代码,例如在没有默认构造函数的对象的情况下会发生这种情况。
以该服务为例:
import javax.ws.rs.*;
import com.sun.jersey.spi.resource.Singleton;
@Singleton
@Path("root")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public class SampleRestService { ..
@PUT
@Path("sample")
public void update(Sample whitelist) throws SampleException {
// do some
}
和对象示例,覆盖默认构造函数:
class Sample{
int x,y;
public sample(int x, int y){
// boring stuff
}
}
在这种情况下,解组编无法对请求内容进行反序列化,并触发405。或最后,这是如何处理glassfish 3.5和javax.ws.rs-api-2.0.1.jar和jersey-xxx-2.25.1.jar。
此修复程序实际上是向通过API传递的对象添加默认构造函数(即没有参数的)。
答案 8 :(得分:0)
在我的情况下,我必须使用带有@RequestBody
的模型类作为补丁控制器。
答案 9 :(得分:0)
我在 Spring Boot 中使用了一个基本的 CRUD 应用程序。在PUT映射中,我以错误的方式传递了路径变量。
@PutMapping(path ={"studentId"}) 替换为 @PutMapping(path ="{studentId}")
答案 10 :(得分:-1)
在服务器端进行更改后,请按ctrl + s保存代码 被卡住了30分钟。