I have the repository.xml as follows:

<?xml version="1.0"?>
<Repository>
    <FileSystem class="org.apache.jackrabbit.core.fs.local.LocalFileSystem">
        <param name="path" value="${rep.home}/repository"/>
    </FileSystem>
    <Security appName="Jackrabbit">
        <AccessManager 
class="org.apache.jackrabbit.core.security.SimpleAccessManager"/>
    </Security>
    <Workspaces rootPath="${rep.home}/workspaces" defaultWorkspace="default" />
    <Workspace name="${wsp.name}">
        <FileSystem class="org.apache.jackrabbit.core.fs.local.LocalFileSystem">
            <param name="path" value="${wsp.home}"/>
        </FileSystem>
           <PersistenceManager 
class="org.apache.jackrabbit.core.state.db.SimpleDbPersistenceManager">
                               <param name="driver" 
value="org.postgresql.Driver"/>
                               <param name="url" 
value="jdbc:postgresql://localhost/test"/>
                               <param name="schema" value="postgresql"/> 
                               <param name="user" value="postgres"/>
                               <param name="password" value="postgres"/>
                               <param name="schemaObjectPrefix" 
value="${wsp.name}_"/>
                               <param name="externalBLOBs" value="false"/>
                           </PersistenceManager>
        <SearchIndex 
class="org.apache.jackrabbit.core.query.lucene.SearchIndex">
            <param name="path" value="${wsp.home}/index"/>
        </SearchIndex>
    </Workspace>
    <Versioning rootPath="${rep.home}/versions">
        <FileSystem class="org.apache.jackrabbit.core.fs.local.LocalFileSystem">
            <param name="path" value="${rep.home}/versions"/>
        </FileSystem>
        <PersistenceManager 
class="org.apache.jackrabbit.core.state.xml.XMLPersistenceManager" />
    </Versioning>
</Repository>

where the data I placed in the repository is? After I ran the FSImport.java and 
configured it to import a bin file about 500Kb, I listed the default_binval and 
the files were there, at least the content was listed. In the file system was 
created a folder under the index directory. Then, is the content of the file I 
imported into the database?
The repository.xml I listed above is for persistence in db; lucene index and 
file content in the file system under the folder I named for repository, rigth?
I didn't see the diference in the files system structure for repository with 
persistence manager in file system and persistence manager in db.

Regards
Helio

Reply via email to