Top "Url-mapping" questions

A framework's URL mapping facility is the mechanism by which the framework interprets URLs.

Spring multiple path variables

In my Spring controller, I try to get 3 path variables: @RequestMapping("{language}/{country}/{term}/catalogue") - @PathVariable String language, @PathVariable …

java spring spring-mvc url-mapping path-variables
Spring Controller's URL request mapping not working as expected

I have created a mapping in web.xml something like this: <servlet> <servlet-name>dispatcher</servlet-name&…

model-view-controller spring-mvc controller web.xml url-mapping
URL mapping with C# HttpListener

In the code below I'm waiting for any call to the 8080 port. static void Main() { HttpListener listener = new HttpListener(); listener.…

c# http url-mapping
Go url parameters mapping

Is there a native way for inplace url parameters in native Go? For Example, if I have a URL: http://…

go routes url-mapping
How to ignore Spring Security config for every thing except a pattern

I have a rest webservice configured as a spring boot application. All my rest urls have a base path "/api/...". …

spring-security url-mapping
How to make home page as default page in asp.net

How can i set default home page in asp web.config file. i have already written this code : <urlMappings&…

c# asp.net web-config url-mapping
Spring MVC 3 - optional URL parameter

I've written following code: @Controller @RequestMapping("/page{number}") public class IndexController { @RequestMapping(method = RequestMethod.GET) public String printIndex(ModelMap model, @…

spring spring-mvc url-mapping
Url Mapping For Jsp

I would like to do a mapping for my web pages. A sort of mapping like Servlet Mapping that i've …

xml jsp web-applications url-mapping
Spring MVC multiple url mapping to the same controller method

Let's say we have 3 url-patterns for a servlet named dispatcher in web.xml: <servlet-mapping> <servlet-name>dispatcher&…

spring-mvc url-mapping
spring BeanCreationException confusion about mapping

trying to integrate hibernate and spring ,I ran into this error SEVERE: Context initialization failed org.springframework.beans.factory.BeanCreationException: …

java spring-mvc url-mapping