> There might be no path for your war/ear file. It might come off a
> database.. Or a CDrom.. or whatever. So do not expect paths to exist at
> all.
>
> Instead, you will have to rely on the servlet container to fetch stuff for
> you. (btw; a servlet container shall provide temporary directory for you
> to write files i, you find this by some env.variable).
>
> To get things relative to the webroot, use
>
servlet.getServletConfig().getServletContext().getResource[AsStream](String
> resource). Read the javadocs. This resource will come off the webroot, and
> to get stuff inside WEB-INF, you specify e.g.
> "/WEB-INF/thefile.properties" as the resource name.

Excellent. This is exactly the information I needed.

I've done something like this in loadConfiguration:

        Properties p = new Properties();
        String propsFile = "/velocity.properties";
        InputStream istream =
getServletContext().getResourceAsStream(propsFile);
        if ( istream != null )
{            p.load( istream );        }

Works great. Thanks.

Blair



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to