Spring MVC; avoiding file extension in url?
Posted
by Ezombort
on Stack Overflow
See other posts from Stack Overflow
or by Ezombort
Published on 2009-09-09T12:48:43Z
Indexed on
2010/04/19
4:03 UTC
Read the original article
Hit count: 331
I just started with Spring Web MVC. I'm trying to avoid file extenstions in the url. How can i do this? (I'm using Spring 2.5.x)
Bean:
<bean name="/hello.htm" class="springapp.web.HelloController"/>
I want it to be:
<bean name="/hello" class="springapp.web.HelloController"/>
I cannot get it to work. Any ideas?
Edit:
Url-mapping
<servlet-mapping>
<servlet-name>springapp</servlet-name>
<url-pattern>*.htm</url-pattern>
</servlet-mapping>
I have tried changing the url-pattern with no luck (* and /*).
© Stack Overflow or respective owner