Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
1k views

DD elements, <context-param> and <init-param> both use the getInitParameter() method

DD elements <context-param> and <init-param> both can be retrieved by the getInitParameter() method, in the servlet code. Now the question is, how does it differentiate ...
1
vote
2answers
2k views

Get filter init parameters in a servlet

I have a filter that looks like this: <filter> <filter-name>TestFilter</filter-name> <filter-class>org.TestFilter</filter-class> <init-param> ...
0
votes
1answer
35 views

Access servlet init parameters from filter

I have a servlet like this: @WebServlet("/a/path") @WebInitParam(name="name", value="name_value") public class MyServlet extends HttpServlet { //... On this servlet I have put a filter: ...
0
votes
2answers
841 views

is there any wayout to set init parameter in servletconfig or servletContext object?

if i want to modify init-parameter value in any of ServletContext or ServletConfig. any want it to be updated after servlet is destroyed by container. is there any wayout?
0
votes
4answers
915 views

How do I access init parameters from a JSP2 tag file?

I'm trying to create a jsp tag file but it fails to compile when I try to use pageContext.getServletConfig().getInitParameter("myInitParam") I'm using tomcat and when I try to view a page including ...