So I'm working on a blog, but I'm stumbeling on organizing content with clear URL paths. Basically, I want every post that is created to have a unique URL path like "http://www.site.com/article/article_name." At this point I have my URLs look like "http://www.site.com/article.jsp?article=article_name," where article.jsp generates different content through:
request.getParameter("requestedArticleName");
I'm aware of servlet mapping to invoke servlets based on URL patterns, but I'm not quite sure how that works, and whether if I need it at all.