C# のバックグラウンドから来て、Java と Spring を使い始めたばかりで、「PUT」リクエストを機能させるのに問題があります。
私は、Jetty 9.0.6 で実行されている Spring 3.2.4 を使用しています。
次のメソッドを持つ単純なコントローラーがあります
@RequestMapping(value = "/{id}", method = RequestMethod.PUT)
public ResponseEntity<String> update(@PathVariable Integer id, @RequestBody Employee employee) {
HttpHeaders headers = new HttpHeaders();
headers.set("content-location", "/api/employees/" + id);
return new ResponseEntity<>("", headers, HttpStatus.OK);
}
このリクエストが実行されると、次のエラーが発生します。
2013 年 10 月 31 日 10:16:16 AM org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver ハンドルHttpRequestMethodNotSupported
警告: リクエスト メソッド 'PUT' はサポートされていません
RequestMethod を「POST」に変更すると、正常に動作します。
Spring は「PUT」リクエストをサポートしていますか? 「PUT」を認識させるにはどうすればよいですか
ジョー
編集
私は愚かだったことが判明しました。Affe は、彼が URL に言及したとき、私に手がかりを与えました。「api/employees/32」である必要があるときに、「api/employees?id=32」のようにアクセスしていました
これが他の誰かの助けになることを願って、ここに Web 記述子、サーブレット、およびコントローラーがあります。
ウェブ記述子
<web-app xmlns='http://java.sun.com/xml/ns/javaee'
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xsi:schemaLocation='http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd'
version='3.0'>
<display-name>timesheet-app</display-name>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>mvc-dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>mvc-dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
MVC-ディスパッチャー-サーブレット
<?xml version='1.0' encoding='UTF-8'?>
<beans xmlns='http://www.springframework.org/schema/beans'
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xmlns:context='http://www.springframework.org/schema/context'
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation='http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.1.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd'>
<!-- Scans the classpath of this application for @Components to deploy as beans -->
<context:component-scan base-package='org.timesheets.web' />
<!-- Configures the @Controller programming model -->
<mvc:annotation-driven />
<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources/ directory -->
<mvc:resources mapping="/resources/**" location="/resources/" />
<!-- Resolves view names to protected .jsp resources within the /WEB-INF/views directory -->
<bean class='org.springframework.web.servlet.view.InternalResourceViewResolver'>
<property name='prefix' value='/WEB-INF/views/' />
<property name='suffix' value='.jsp' />
</bean>
</beans>
コントローラ
@Controller
@RequestMapping("/api/employees")
public class EmployeeController {
@RequestMapping(method = RequestMethod.GET)
public @ResponseBody List<Employee> get() {
List<Employee> employees = new ArrayList<>();
for(int i = 1; i <= 10; i++){
employees.add(new Employee(i, "Test " + i, "Department " + i));
}
return employees;
}
@RequestMapping(value = "/{id}", method = RequestMethod.GET)
public @ResponseBody Employee get(@PathVariable Integer id) {
return new Employee(1, "Test", "IT");
}
@RequestMapping(method = RequestMethod.POST)
public ResponseEntity<String> create(@RequestBody Employee employee) {
HttpHeaders headers = new HttpHeaders();
headers.set("content-location", "/api/employees/32");
return new ResponseEntity<>("", headers, HttpStatus.CREATED);
}
@RequestMapping(value = "/{id}", method = RequestMethod.PUT)
public ResponseEntity<String> update(@PathVariable Integer id, @RequestBody Employee employee) {
HttpHeaders headers = new HttpHeaders();
headers.set("content-location", "/api/employees/" + id);
return new ResponseEntity<>("", headers, HttpStatus.OK);
}
}