[
https://issues.apache.org/jira/browse/VELOCITY-418?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Henning Schmiedehausen closed VELOCITY-418.
-------------------------------------------
> FileInputStreams are not being closed so webapps cannot be undeployed.
> ----------------------------------------------------------------------
>
> Key: VELOCITY-418
> URL: https://issues.apache.org/jira/browse/VELOCITY-418
> Project: Velocity
> Issue Type: Bug
> Affects Versions: 1.3-rc1, 1.3, 1.3.1-rc2, 1.3.1, 1.4
> Environment: Deployed web app in application server. Unable to
> undeploy because directory cannot be deleted.
> Reporter: Jason Weinstein
> Priority: Critical
> Fix For: 1.5
>
>
> Deployed web app in application server. Unable to undeploy because directory
> cannot be deleted.
> Example error:
> Unable to delete: rm:
> App/App_war/org/apache/velocity/runtime/defaults/directive.properties:
> Permission denied
> InputStreams are not being closed.
> From RuntimeInstance.java
> private void initializeDirectives() throws Exception
> {
> /*
> * Initialize the runtime directive table.
> * This will be used for creating parsers.
> */
> runtimeDirectives = new Hashtable();
>
> Properties directiveProperties = new Properties();
>
> /*
> * Grab the properties file with the list of directives
> * that we should initialize.
> */
> InputStream inputStream =
> getClass().getResourceAsStream('/' + DEFAULT_RUNTIME_DIRECTIVES);
>
> if (inputStream == null)
> throw new Exception("Error loading directive.properties! " +
> "Something is very wrong if these properties
> " +
> "aren't being located. Either your Velocity "
> +
> "distribution is incomplete or your Velocity
> " +
> "jar file is corrupted!");
>
> directiveProperties.load(inputStream);
> On top of this
> ExtendedProperties.java does not close InputStreams which it opens.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]