【发布时间】:2015-06-26 02:55:36
【问题描述】:
我正在使用 springboot angularsjs 和 restful。
我的休息控制器
@RequestMapping(value="/updatestructure/{ch}",method = RequestMethod.PUT)
public @ResponseBody Structurenotification updateStructure(@PathVariable(value="ch") StructureNotificationDto ch) {
return StructureNotif.update(ch);
}
按钮
$scope.addstructure = function() {
$http.put('/structure/updatestructure/', $scope.element);
};
但我遇到了这个问题:
o.s.web.servlet.PageNotFound:不支持请求方法“PUT”
【问题讨论】:
-
我认为这个问题可能与 Java 相关而不是 JavaScript
标签: javascript angularjs spring-boot spring-data-rest