Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Combining ControllerClassNameHandlerMapping and @RequestMapping with relative value on Controller method doesn't work anymore [SPR-6475] #11141

Closed
spring-projects-issues opened this issue Nov 30, 2009 · 2 comments
Assignees
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) status: duplicate A duplicate of another issue

Comments

@spring-projects-issues
Copy link
Collaborator

spring-projects-issues commented Nov 30, 2009

Hans Desmet opened SPR-6475 and commented

The controller beans xml file contains:


<context:component-scan base-package="org.example.web"/>
<bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"/>

The Controller class:


package org.example.web;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class ArticlesController {
@RequestMapping("all") // all == a relative URL
public String findAll() {
return "/WEB-INF/JSP/allArticles.jsp";
}
}

Spring 2.5


A GET request with the URL /articles/all was processed by the function findAll

Spring 3.0 RC2


A GET request with the URL /articles/all produces HTTP 404 error.


Affects: 3.0 RC2

Issue Links:

@spring-projects-issues
Copy link
Collaborator Author

Juergen Hoeller commented

Arjen, this is exactly what should be sorted out already after your latest revision there?

Juergen

@spring-projects-issues
Copy link
Collaborator Author

Arjen Poutsma commented

Yes, this should be fixed now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) status: duplicate A duplicate of another issue
Projects
None yet
Development

No branches or pull requests

2 participants