I am developing a web app using Spring MVC.
I have two controllers: QuestionController and TodoController - both extend MultiActionController and both have a list() method defined.
I have defined the mapping in my web.xml for the dispatcher as follows:
<servlet-mapping>
<servlet-name>app</servlet-name>
<url-pattern>/todo/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>app</servlet-name>
<url-pattern>/question/*</url-pattern>
</servlet-mapping>
Next step, I have defined the specific controller mappings in my mvc config as follows:
<bean id="handlerMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props>
<prop key="/todo/**">todoController</prop>
<prop key="/question/**">questionController</prop>
</props>
</property>
With the above scenario everything is working fine, I can navigate to /question/list and I see the expected questions, and i can navigate to /todo/list and I see the expected To-Dos listed.
Now, I wanted to add a method to the QuestionController that uses the @PathVariable (so I can have a single method that handles all urls like: /question/detail/[QUESTION_ID]). To achieve this I added the @RequestMapping annotation to the detail() method in my question controller - to make this work I needed to add @Controller annotation to my QuestionController class, as well as applicable @RequestMapping annotation to my original list() method.
Again, this all seemed to work perfectly - I could still access the list of questions page via /question/list and navigating to /question/detail/123 allowed me to view the detailed page I was expecting for Question 123. However, when I now navigate to /todo/list I am presented with the page I would expect for /question/list and the logs show as follows:
2011-08-08 15:23:38,098 [http-8080-3] DEBUG org.springframework.web.servlet.DispatcherServlet - DispatcherServlet with name 'app' determining Last-Modified value for [/app/todo/list]
2011-08-08 15:23:38,098 [http-8080-3] DEBUG org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping - Mapping [/list] to handler 'com.tmm.enterprise.controller.QuestionController@1ef4b'
2011-08-08 15:23:38,133 [http-8080-3] DEBUG org.springframework.web.servlet.DispatcherServlet - Last-Modified value for [/app/todo/list] is: -1
2011-08-08 15:23:38,133 [http-8080-3] DEBUG org.springframework.web.servlet.DispatcherServlet - DispatcherServlet with name 'app' processing GET request for [/app/todo/list]
2011-08-08 15:23:38,133 [http-8080-3] DEBUG org.springframework.web.bind.annotation.support.HandlerMethodInvoker - Invoking request handler method: public org.springframework.web.servlet.ModelAndView com.tmm.enterprise.controller.QuestionController.list(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.lang.Exception
As you can see - for some reason the Question controller is now being selected despite the URL matching the mapping for the TodoController.
Any ideas?
UPDATE
The two controllers are defined as follows:
QuestionController.java
@Controller
public class QuestionController extends MultiActionController implements InitializingBean
{
@RequestMapping("/list")
public ModelAndView list(HttpServletRequest request, HttpServletResponse response) throws Exception{
//Display List view for questions
}
@RequestMapping("/detail/{questionId}")
public ModelAndView detail(@PathVariable("questionId") long questionId, HttpServletRequest request, HttpServletResponse response) throws Exception{
//Display Detailed Question View for questionId...
}
}
ToDoController.java
public class TodoController extends MultiActionController implements InitializingBean
{
@Transactional
public ModelAndView list(HttpServletRequest request, HttpServletResponse response) throws Exception{
//Display list of Todos
}
}
As you can see, I have only added annotations on the QuestionController, not the ToDo controller. I have also not explicitly defined the URL mapping to the Question Controller again in the annotations (I know I could put @RequestMapping("/question") at the class level - but as this is already defined in the config I have not added it here as well. Also, If i do define it here as well then i get a ResourceNotFound error, but if i navigate to /question/question/list then it loads correctly)