@RequestMapping methods returning null have an implicit ModelAndView created [SPR-4518] #9195
Labels
in: web
Issues in web modules (web, webmvc, webflux, websocket)
type: enhancement
A general enhancement
Milestone
Chris Lee opened SPR-4518 and commented
It isn't clear that this is necessarily a bug.
When annotating a 'void' method with
@RequestParam
, and that method does not take the Response (or any output construct therein, i.e. PrintWriter), an implicit ModelAndView is created in AnnotationMethodHandlerAdapter. In the case where there was no intent to have a MAV returned (and hence no view resolvers were configured), this results in a circular view path error (stack trace below). The method definition looks like:@Controller
@RequestMethod
(value="/BCMinistryBillingServer/*,method=RequestMethod.POST)public class TestMethod {
@RequestParam
public void handleBill(
@RequestParam
("data") String data ){
// some code here
}
}
In this case, there is no return value and the method does not write anything back - nor is anything expected back in the response body (it is a system interface).
09:04:19,990 DEBUG [org.springframework.beans.factory.support.DefaultListableBeanFactory] Invoking afterPropertiesSet() on bean with name 'handleBill'
09:04:19,990 DEBUG [org.springframework.web.servlet.view.InternalResourceViewResolver] Cached view [handleBill]
09:04:19,990 DEBUG [org.springframework.web.servlet.DispatcherServlet] Rendering view [org.springframework.web.servlet.view.JstlView: name 'handleBill'; URL [handleBill]] in DispatcherServlet with name 'springDispatcherServlet'
09:04:19,990 DEBUG [org.springframework.web.servlet.view.JstlView] Rendering view with name 'handleBill' with model {} and static attributes {}
09:04:20,006 DEBUG [org.springframework.web.servlet.DispatcherServlet] Cleared thread-bound request context: org.apache.catalina.connector.RequestFacade@ee50b4
09:04:20,006 DEBUG [org.springframework.web.servlet.DispatcherServlet] Could not complete request
09:04:20,022 ERROR [[springDispatcherServlet]] Servlet.service() for servlet springDispatcherServlet threw exception
javax.servlet.ServletException: Circular view path [handleBill]: would dispatch back to the current handler URL [/BCMinistryBillingServer/handleBill] again. Check your ViewResolver setup! (Hint: This may be the result of an unspecified view, due to default view name generation.)
at org.springframework.web.servlet.view.InternalResourceView.prepareForRendering(InternalResourceView.java:261)
at org.springframework.web.servlet.view.InternalResourceView.renderMergedOutputModel(InternalResourceView.java:192)
at org.springframework.web.servlet.view.AbstractView.render(AbstractView.java:252)
at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1162)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:900)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:808)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:523)
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:463)
Affects: 2.5.2
Referenced from: commits 6fbd198
1 votes, 2 watchers
The text was updated successfully, but these errors were encountered: