Tagged Questions
The servletconfig tag has no wiki summary.
6
votes
6answers
2k views
Can I dynamically load additional Spring configuration files into an existing WebApplicationContext?
Upon starting my webapp within Tomcat 6.0.18, I bootstrap Spring with only what is necessary to initialize the system -- namely, for now, database migrations. I do not want any part of the system to ...
4
votes
3answers
757 views
Dynamically add a servlet to the servletConfig
I have a Java web application that uses a plugin architecture. I would like to know if anyone has a solution where by one could add a servlet, with serlvet mapping to the servletconfig while the web ...
3
votes
4answers
1k views
How to portably read configuration data from a servlet
I'm writing a Java servlet that needs to read some site-specific
configuration data; I would like it to be easily accessible/modifiable
by the sysadmins at deployment time. There is no sensible ...
2
votes
1answer
568 views
Servlet 3.0 annotations <welcome-file>
Is it possible to set welcome-file tag from standard web.xml file by servlet 3.0 annotation ?
<welcome-file-list>
<welcome-file>PageName.html</welcome-file>
...
1
vote
1answer
2k views
eclipse validator - Invalid content was found starting with element 'display-name' in web.xml
I am using Eclipse Helios Release. Eclipse xml validater don't like display-name element under in my web.xml
here is part of my web.xml
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
...
1
vote
2answers
108 views
Simple Servlet Question on ServletConfig instantiation
Apparently the following is generating a loop(the GenericServlet class is calling the subclass's init())
public void init() throws ServletException {
ServletConfig c = this.getServletConfig();
...
0
votes
2answers
1k views
calling normal java class from servlet
Every time im trying to access a normal java class from servlet (from other project) it gives me classNotFound exception, any idea how to fix this problem
thanks in advance
0
votes
2answers
598 views
Tomcat: Handle Servlet Exception
I am setting up PHP on my Tomcatserver using the PECL-servlet (PHP/PECL-version 5.2.5). The server now sucessfully handles real PHP-files, but i am having a problem with requests for nonexistent ...
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
1answer
131 views
jsp:this refers to which object in jsp page 's jave code block <% %>?
i am using this reference in jsp .i am able to call functions like
this.getServletConfig();
can anyone pls tell me for which servlet its returning servletconfig object.and which object its refering ...