Java Mailing List Archive

http://www.junlu.com/

Google
Google
Mailing List
Home
Forum Home
JBoss - Java Application Server
Tomcat - JSP/Servlet container
Struts - A MVC web framework
iText - An open source PDF Java Library
JDOM - JDOM XML Parser
J2EE - A mailing list for Java(tm) 2 Platform, Enterprise Edition
JSP - A mailing list about Java Server Pages specification and reference
J2EE Pattern - An interest list for Sun Java Center J2EE Pattern Catalog
Servlet - A mailing list for discussion about Sun Microsystem's Java Servlet API Technology
Struts & Hibernate
Subjects
JSP editor plugin for eclipse ?
org apache jasper JasperException: Unable to compile class for JSP
Tomcat: Connection reset by peer: socket write error
Cannot retrieve definition for form bean null
Struts Tiles Tutorial (free Struts training)
Where do I download Tomcat 4 0 6?
Data Access Object (DAO) pattern, example DAO 's
Where to download Tomcat v 4 1 24 from?
Tomcat 5 0 16 Requested resource not available
Oracle Connection Pooling in 3 2 2
Servlet : Session invalidate
Servlet action is currently unavailable
Tomcat/Struts Unicode Encoding/Decoding problems
Tomcat and webapplication specific java library path
Running a Simple JMS Example
Mapping in workers2 properties
org apache jasper JasperException
Cannot find message resources under key org apache struts action
   MESSAGE
problem with html:text bean throwing exception
Cannot find message resources under key org apache struts action MESSAGE
invalid direct reference problem with solution
Tool for jsp debug Try Sysdeo Eclipse Plugin
Tomcat 5 Cannot load JDBC driver class 'null ' SQL state: null
weblogic ejbc
java properties file
Jboss 3 2 3 Coyote Can 't re
Tomcat 5, Apache2 and mod jk2 integration problem
JBoss example problem new to J2EE
url string for connecting jboss to oracle
Value attribute of <html:checkbox
javax servlet ServletException: BeanUtils populate
HTTP Status 404 The requested resource is not available
5 0 18: Windows XP Pro vs Windows 2000
 
Helping setting appropriate prefix when using ServletContext.getResourceAsSt

Helping setting appropriate prefix when using ServletContext.getResourceAsSt

2006-12-21       - By Caldarale, Charles R

 Back
Reply:     1     2     3     4     5     6  

> From: James Dekker [mailto:james.dekker@(protected)]
> Subject: Helping setting appropriate prefix when using
> ServletContext.getResourceAsStream()

Where to begin...

>         // String prefix = getServletContext().getRealPath("/");

You apparently already figured out the above was a bad idea, as is any
direct I/O request from inside a webapp.  When your webapp is deployed
as a .war, it has no access to the structure inside the .war file other
than via the classloader (which includes the getResourceAsStream() API).
Consequently, much of the rest of your code in the servlet is
inappropriate.

As far as where to place log4j.properties, the Tomcat doc states:

"You would place a similar log4j.properties file in your web
application's WEB-INF/classes folder, and log4j1.2.8.jar into
WEB-INF/lib. Then specify your package level logging."

See:
   http://tomcat.apache.org/tomcat-5 (See http://cat-5.ora-code.com).5-doc/logging.html
for more info.

>     <servlet-mapping>
>       <servlet-name>MySampleAppServlet</servlet-name>
>       <url-pattern>/app</url-pattern>
>     </servlet-mapping>

Note that the above will allow only the URI
http[s]://host[:port]/myapp/app to reach your servlet.  If you want all
requests for the myapp context to be processed by your servlet, change
the url-pattern to just "/" (without the quotes).

>            <param-value>WEB-INF\log4j.properties</param-value>
<snip>
>            <param-value>WEB-INF\attributes-config.xml</param-value>

Use forward slashes in the config files, even on Windows.

> Dec 21, 2006 4:53:16 PM
> org.apache.catalina.loader.WebappClassLoader Source code of org.apache.catalina.loader.WebappClassLoader
> INFO:
> validateJarFile(C:\DevTools\tomcat\jakarta-tomcat-5 (See http://cat-5.ora-code.com).5.9\webapps\
> affiliates\WEB-INF\lib\servlet-api.jar)
> - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending
> class: javax/servlet/Servlet Source code of javax/servlet/Servlet

Don't put servlet-api.jar into any of your webapps, since Tomcat already
supplies it in common/lib.  No class should ever appear in more than one
place in any given branch of the classloader tree:

     Bootstrap
         |
      System
         |
      Common
     /      \
Catalina   Shared
            /   \
       Webapp1  Webapp2 ...

- Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
MATERIAL and is thus for use only by the intended recipient. If you
received this in error, please contact the sender and delete the e-mail
and its attachments from all computers.

-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------
To start a new topic, e-mail: users@(protected)
To unsubscribe, e-mail: users-unsubscribe@(protected)
For additional commands, e-mail: users-help@(protected)


©2008 junlu.com - Jax Systems, LLC, U.S.A.