Questions tagged [url-mapping]

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

The frameworks match the provided URLs against pre-determined patterns using regular expressions, or use URL rewriting to translate the provided URL into one that the underlying engine will recognize. Another technique is that of graph traversal, where a URL is decomposed in steps that traverse an object graph (of models and views).

A URL mapping system that uses pattern matching or URL rewriting allows more "SEO friendly URLs" to be used, increasing the simplicity of the site and allowing for better indexing by search engines. This makes the URL easier for people to read and hand write, and provides search engines with better information about the structural layout of the site. A graph traversal approach also tends to result in the creation of SEO friendly URLs.

363 questions
-1
votes
1 answer

javascript only - change image by hover over hidden radio button

How might I change an image using javascript what would I add to the following function to make the image change as well?…
ChrisKsag
  • 131
  • 1
  • 9
-1
votes
1 answer

Spring MVC 3.1: Trouble with url mapping

I'm new to Spring MVC framework, having some trouble with basic URL mapping using two different controllers. I'm using @Controller and @RequestMapping. The following results in 404 error for both /people and /accounts. Here is my Spring MVC 3.1…
user1639888
  • 1
  • 1
  • 3
-2
votes
1 answer

How do you create a RESTful API with Java servlets?

I am trying to create a simple application using Java and Servlets. In my app, there are users, and each one should have his/her own page. I think the URLs for this page should look like: www.myapp.com/users/john www.myapp.com/users/paul ... and so…
CodyBugstein
  • 21,984
  • 61
  • 207
  • 363
1 2 3
24
25