Hey Guys,
I am trying to get all requests going into the spring dispatcher servlet but with exceptions.
So, I want urls such as
/myapp/this
/myapp/that/and
/myapp/that/and/the-other
Into Spring. But I do not want
/images/*
/css/*
Handled by Spring.
Can anyone suggest a way of doing this? Right now I can get all requests or no requests going into Spring.
I do not want to use a servlet url-mapping that specifies an extension.
E.g. I do not want to use a mapping of *.ext as I find this a little ugly/antiquated and specific to java servlet development.


Reply With Quote