10
votes
1answer
896 views

When to use JCR (content repository) over other options?

I'm trying to evaluate content repositories (JSR283) like Jackrabbit and ModeShape but I must confess that I don't understand what problem resolves in first place and even if it is a good choice for ...
7
votes
1answer
1k views

What does ModeShape offer that JackRabbit doesn't?

I just familiarized myself with Apache JackRabbit. I've done a little multi-user repository for document management. If anybody used both of them, could you please answer these questions ? Is ...
4
votes
3answers
498 views
+100

Jackrabbit user management

I can hardly find any documentation on how to design and build a repository for multiple users. I'm quite new to Jackrabbit and I was always using one master user credentials to build a repository ...
4
votes
3answers
494 views

How to access remote jackrabbit repository?

I need to work with remote jackrabbit repository. I use following code to connect to the local repository: Repository repository = new TransientRepository(); Session session = repository.login(new ...
3
votes
1answer
67 views

How to snapshot backup & restore from JCR (Java Content Repository)

How can I snapshot backup/restore JCR repository? I need complete integrity. This means, single snapshot image produced by single backup command must be valid without any external dependancy. And it ...
3
votes
1answer
2k views

How to add file with additional properties into Liferay's Document Library

I'm trying to figure this out, I was asking this question in Liferay's forum here - the last entry. And only thing I'm able to come up with is creating an Expando for FileEntry, which seems very ...
2
votes
2answers
291 views

Is it possible to use Alfresco as JCR framework?

I'd like to know if Alfresco could be used only as a framework to manage content in repository. Without all the fancy layers above. I've tried some maven alfresco archetypes, but they are mainly ...
2
votes
1answer
299 views

Persisting various types of documents (ods, ms office, pdf) into Jackrabbit repository

I'm not sure what approach to choose for storing those types of documents because the key requirement is to gather as much metadata as possible and pdf, ods and MS office documents have various types ...
2
votes
1answer
171 views

JCR (JSR-170) connector for Lotus Notes

I'm looking for JCR (JSR-170) connector for Lotus Notes Domino Server 7 for integration between our customer Domino server and our software. Does anybody has an experience in dealing with such JCR ...
2
votes
1answer
918 views

Custom JCR (Jackrabbit) node property type

I want to use an enum constant for a property value in jackrabbit. However the Node.setProperty() only accepts primitive types, String and Value as property value types. I looked through the ...
2
votes
3answers
335 views

Java Content Repository implementation: single-threaded, in-memory, read-only?

Does a Java Content Repository (JCR, specified in JSR-283) implementation with the following features exist? Single-threaded (does not create threads for background processing). In-memory (does not ...
2
votes
1answer
380 views

What's the correct way to read an inputStream into a node property in JCR 2?

In JCR 1 you could do: final InputStream in = zip.getInputStream(zip.getEntry(zipEntryName)); node.setProperty(JcrConstants.JCR_CONTENT, in); But that's deprecated in JCR 2 as detailed at ...
2
votes
1answer
397 views

Java JCR: Correspondance between parent and child node versions

I am using Jackrabbit and I have the following question: I have a parent node P and a child node C. Both P and C are versionable. At some point in my code I need to get data from a previous version V ...
2
votes
1answer
231 views

Connect multiple JCR repositories to one database (and keep updated)

I am a little bit stuck in the moment because I don't know if my problem is solvable at all. I have one database (MySQL) where a JCR repo is stored. Secondly do I have two webapps (edit/live) that ...
2
votes
2answers
813 views

Logging into Jackrabbit with custom LoginModule

I am trying to write a LoginModule that authenticates users with Jackrabbit repository. However, I want it to check the credentials that are stored in repository itself. So the problem is, in my ...
1
vote
1answer
160 views

Can I use MongoDB for Java Content Repository?

Can I use MOngoDB for JCR storing file (xml file)?
1
vote
1answer
148 views

JCR jackrabbit pagination

I'm using the following JCR-SQL2 Query to retrieve some files from jackrabbit repository SELECT id FROM [nt:file] WHERE ISDESCENDANTNODE([/repo/cms]) How can I use pagination in jackrabbit ...
1
vote
4answers
168 views

browsing JACKRABBIT content visually?

i want to remove my current content from my DataBase tables. and take them to a Content Repository (JCR) is there any wizard that lets browsing Jackrabbit content visually. because working with ...
1
vote
1answer
75 views

Application Data Persistence Framework/Library?

Our Java desktop application is managing several text files as edited by the users. Currently, those files are saved into the file system using in-house Java code. We'd like to move away from this ...
1
vote
1answer
151 views

How much does CMIS specification cover JCR specification?

I'm planning to use openCMIS (apache chemistry project) with my JCR repository via JCR bridge. But there is a lack of documentation for this. Apart from CRUD of files from/to JCR repository which I ...
1
vote
0answers
229 views

Are jackrabbit object content mapping and org.springmodules.jcr dying?

I was wondering about this. I'm planning to employ jackrabbit in a ECM project and it seems that OCM is dying or what, it is a different fork that the rest of the project. In maven repos there are old ...
1
vote
1answer
185 views

Is there any abstraction layer for Apache JackRabbit repository?

I was wondering if there is a library that provides developers with some sort of abstraction for accessing JackRabbit more easily. I'm aware of the fact that there are a few CMS that utilizes ...
1
vote
1answer
249 views

JackRabbit persistence managers clarification

I'm trying to decide what type of persistence manager to use for my project. I read this wiki entry about persistenceManagers. First of all, due to JCR-2802 (all non-bundle PM deprecated), there are ...
1
vote
1answer
636 views

How do I setup Jackrabbit Repository.xml for 2 Nodes with Shared NFS Mount?

I'm having a lot of trouble trying to get my repository.xml correct for a 2 node configuration using a shared NFS mount. Should I be using a DB persistence manager for both the PersistenceManager and ...
1
vote
2answers
117 views

JCR find mandatory property in runtime

Im a java dev. and i now i'm facing with jackrabbit v.1.6.4. Now one of my goal is to create node in a web based jcr browser, so when i have to create node with mandatory property of course the ...
1
vote
1answer
510 views

Java JCR how to change order of nodes?

I am using Jackrabbit with JCR, how can I change the order of the nodes?
1
vote
3answers
927 views

How do I configure custom node definitions in Apache Jackrabbit?

Is there a way that I can configure custom node types for Apache Jackrabbit to be registered when a new repository is instantiated? I am automating my build using Apache Maven and have some unit ...
1
vote
3answers
890 views

JCR 170 Data modeling: Node names

The situation: Lets say we are implementing a blog engine based on JCR with support for localization. The content structure looks something like this /blogname/content/[node name] The problem: What ...
0
votes
1answer
15 views

jcr query construct

I am building a jcr query and receive data from repository. Here is my code: String queryString = "SELECT * FROM public:hours"; try { // get session Session session = ...
0
votes
1answer
33 views

Apache Jackrabbit webapp

I would like to know if there is a (third party) webapp for apache jackrabbit, which I can use to browse and move/delete/edit the documents on my jackrabbit server. I know there is the web interface ...
0
votes
1answer
41 views

How do I do a multi-level properties query in JCR 2.0 SQL2?

I want to do something like this, but in JCR_SQL2 (since XPATH is now deprecated in JCR 2.0). QueryManager queryManager = session.getWorkspace().getQueryManager(); String queryExpression = ...
0
votes
1answer
57 views

JCR 2.0 how right use session

This guide JCR Wiki proposes the use of a new session for each request. My task is to create a tree of jackrabbit files. So going by this guide to get properties/ nodes of each item, I would need to ...
0
votes
2answers
92 views

Can Sling handle “virtual resources”?

Background: I've been tasked with implementing search engine sitemaps for a website running on Sling. The site has multiple country-specific sites, and every country-specific sites can have multiple ...
0
votes
1answer
458 views

Liferay's document library for multiple users with private repository/folder/files for each one

I'd like to set up a portal where users don't cooperate but they are not aware of each other within the community. Each user works only with his files. I don't see a way how to handle that via ...
0
votes
2answers
60 views

Convert Hippo JCR datetime to Java format

I use JCR Query to get some news from Hippo repository. and as result I getting date in this format: 2011-04-07T08:34:13.093Z can someone tell me how can I convert it to like this: 07-04-2011 ...
0
votes
3answers
356 views

what is JCR in java and spring

I have been learning java spring hibernate MVC for 3 months and got pretty idea of that . But i have not understood what JCR means. I mean for e.g in my simple webiste in spring MVC what part can be ...
0
votes
1answer
194 views

Is storing temporary files into JackRabbit a good idea?

does anobody know how much overhead jackrabbit has, in comparison with pure FS persistence ? I'm using it for a CMS project, but I also have to persist temporary files (that unfortunately have ...
0
votes
2answers
297 views

openCMIS Local binding - JcrServiceFactory with jackRabbit implementation

Hey, there is something wrong with the third alternative, because the loop in JcrServiceFactory is searching for properties starting with jcr.* (others are not passed along), but right after in ...
0
votes
1answer
317 views

Is it possible to connect an existing JCR repository to Liferay?

I'm wondering if I can setup liferay to use my existing JackRabbit repository via com.liferay.documentlibrary.util.JCRHook If I set all these properties to match my repository, would it work ? ...
0
votes
1answer
29 views

How to Commit node in JCRRepository

How can i commit a node in JCRRepositorty that will persist in all session.
0
votes
2answers
88 views

Repository Types

How many types of JCRRepository are there?
0
votes
1answer
307 views

Jcr node how to changing name?

i have a question for you, i'm tring to changing the name of a jcr node. But i have no idea of how? Someone of you has some hints? Many thanks Have a nice weekend! j.
0
votes
1answer
200 views

High-level Java filesystem content manipulation : old style vs. jcr?

what is the best way to choose for managing text/binary content on filesystem? Typically when building web applications with a lot of multimedia binaries and other various text based content stored on ...
0
votes
1answer
391 views

Can't remove version in Jackrabbit

I'm trying to remove a version from the version history and I'm getting javax.jcr.ReferentialIntegrityException: Unable to remove version. At least once referenced. When I try to remove all ...
0
votes
2answers
107 views

Handle InvalidItemStateException in jackrabbit

We are now experiencing a number of InvalidItemStateException in our web application caused by 2 or more users updating the same content. As far as I understood it is in design of JackRabbit to throw ...