OracleFileSystem uses getClass().getResourceAsStream to load schema file
------------------------------------------------------------------------
Key: JCR-951
URL: https://issues.apache.org/jira/browse/JCR-951
Project: Jackrabbit
Issue Type: Improvement
Components: core
Affects Versions: 1.3.1
Reporter: Marcel May
Priority: Minor
Fix For: 1.3.1
Attachments: jackrabbit.542562.patch.txt
org.apache.jackrabbit.core.fs.db.OracleFileSystem loads the schema via
getClass().getResourceAsStream(...).
This makes it impossible to extend the class without either copying the schema
ddl file, or overwriting checkSchema(...),
as the schema file is not accessible.
The solution is to use OracleFilesystem.class.getResourceAsStream(...).
See JCR-595 which fixed this already for
org.apache.jackrabbit.core.persistence.db.DatabasePersistenceManager.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.