Tagged Questions

2
votes
1answer
501 views

Servlet/JSP URLs when forwarding requests

My web app has a servlet called admin which when navigated to checks if the user is logged in and if the are directs to the the admin section, but if they aren't it directs them to a JSP page with a ...
1
vote
3answers
2k views

Spring servlet mapping - no css or jsp!

I read over this post, which is similar to my issue, but had no luck solving the problem: Basically I used to have the following servlet-mapping in my web.xml: <servlet-mapping> ...
0
votes
0answers
23 views

Java servlet not executing

I have this awkward issue my some servlet are not being executed. I have a package called controller and inside it there is another or may be at same hierarchy named controller.admin All the ...
0
votes
1answer
45 views

In JSF, can I suppress part of the directory hierarchy of an XHTML file in the URL?

In a JSF application, we have the directory hierarchy: webapp xhtml login.xhtml main.xhtml search.xhtml css main.css extra.css js jquery.js etc. The servlet mapping ...
0
votes
0answers
89 views

servlet filter mapping for url-pattern to target specific path in url

I am using jawr. I want to map only js files which has "bundle" folder in its path (/bundle/*.js ) so that other js files which i have it as tag works fine. currently, if i specify url-mapping as ...
0
votes
0answers
53 views

servlet mapping, legacy method

I've read about mapping via web.xml, done with the servlet element but without the servlet-mapping element (JSP The complete reference, by Hanna Phil). <servlet> ...
0
votes
2answers
267 views

Why does Tomcat resolve context path differently for certain url-mappings?

So, I'm trying to write a servlet which can handle a url mapping like: domain/context/servlet/resource_id Before, when I was specifying the url pattern, I was just doing: /myServlet But, ...
0
votes
2answers
167 views

Accessing a servlet's mapping from Tomcat?

The following code accesses a servlet's name: servletConfig.getServletName(). Can I access a servlet's URL pattern in a similar way? An excerpt from web.xml: <servlet-mapping> ...