这是我的控制器方法
@RestController
public class ProfileController {
@GetMapping("/quiz/{quizId}/identifyfromsixjson")
@ResponseBody
UserProfileQuestion playIdentifyFromSix(@PathVariable String quizId, HttpServletRequest request) {
... Calling service method ... here
}
}
应用程序属性
server.contextPath=/myproject
spring.h2.console.enabled=true
spring.jpa.hibernate.ddl-auto=update
因此,当我向 http://localhost:8080/myproject/identifyfromsixjson/test 发出GET请求时,这是我在Postman中看到的响应。
{
"timestamp": "2018-10-08T02:42:14.387+0000",
"status": 405,
"error": "Method Not Allowed",
"message": "Request method 'GET' not supported",
"path": "/myproject/quiz/test/identifyfromsixjson"
}
启动日志
018-10-08 01:59:32.603 WARN 46035 --- [ main] aWebConfiguration$JpaWebMvcConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2018-10-08 01:59:32.641 INFO 46035 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/quiz/{quizId}/identifyfromsixjson]}" onto public org.springframework.http.ResponseEntity<com.myproject.model.UserProfileQuestion> com.myproject.controller.ProfileController.fetchUserProfileAndHeadShot(java.lang.String,javax.servlet.http.HttpServletRequest)
2018-10-08 01:59:32.644 INFO 46035 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2018-10-08 01:59:32.644 INFO 46035 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2018-10-08 01:59:32.672 INFO 46035 --- [ main] o.s.w.s.h.BeanNameUrlHandlerMapping : Mapped URL path [/myproject] onto handler '/myproject'
2018-10-08 01:59:32.678 INFO 46035 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2018-10-08 01:59:32.678 INFO 46035 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
我做错了什么?
这是您定义的路径:
/quiz/{quizId}/identifyfromsixjson
这就是您正在测试的路径
/identifyfromsixjson/test
很明显,它们不匹配,这就是您收到该错误的原因。
您可以执行以下操作:
1. 使用您定义的路径进行测试:
http://localhost:8080/myproject/quiz/test/identifyfromsixjson
2. 更新路径定义
@GetMapping("/identifyfromsixjson/{quizId}")
@ResponseBody
UserProfileQuestion playIdentifyFromSix(@PathVariable String quizId,HttpServletRequest request) {
... Calling service method ... here
}
然后使用
http://localhost:8080/myproject/identifyfromsixjson/test
看起来你想写一个 RestController。使用@RestController
注释控制器
@RestController
public class QuizController {
@GetMapping("/identifyfromsixjson/{quizId}")
@ResponseBody
UserProfileQuestion playIdentifyFromSix(@PathVariable String quizId, HttpServletRequest request) {
... Calling service method ... here
}
}