Tagged Questions
JCR is an acronym for Java Content Repository: a hierarchical database mainly used by content management systems.
9
votes
1answer
771 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 ...
9
votes
1answer
940 views
When should you use JCR and when should you use JPA/RDBMS?
The Java JCR API defines a persistence mechanism which can be used to replace many of the traditional roles of a RDBMS. For example, JackRabbit - the JCR reference implementation - supports ...
6
votes
3answers
1k views
What is the best way to save my POJOs into Jackrabbit JCR?
In Jackrabbit I have experienced two ways to save my POJOs into repository nodes for storage in the Jackrabbit JCR:
writing my own layer
and
using Apache Graffito
Writing my own code has proven ...
4
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
403 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 ...
4
votes
3answers
842 views
Does anybody know a good and easy JCR UI management Tool?
I'm importing massive data into a JackRabbit JCR repository. A good UI management tool to visualize the JCR repository would be great to check if the imported data is in a good layout, and also would ...
3
votes
1answer
58 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
4answers
97 views
JCR Repository available for Junit tests
I have a code accessing to content repositories through JCR API. My code is being developed in OSGI environment. What I want is to have a JCR content repository which should be available while running ...
3
votes
3answers
417 views
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 ...
3
votes
1answer
1k views
Get File Out of JCR File Node
I have the following code to insert "rose.gif" into a roseNode. But how do I retrieve the file from the repository?
Node roseNode = ...
3
votes
2answers
2k views
How do you backup an apache Jackrabbit repository without shutting Jackrabbit down?
When running Apache Jackrabbit JCR as an embedded service in your app, is there a quick way to get a sound and consistent backup of the contents of the Jackrabbit repository without shutting ...
2
votes
1answer
161 views
in CQ5 , How to connect an External Database in place of JCR?
I have to connect an External Database ( MySQL ) in place of the inbuilt Content Repository that is called JCR in CQ5 . I am unable to do it .
Please give ideas . Suggestions are invited.
Komal
2
votes
3answers
179 views
Performing remote query on a Jackrabbit Server
We are using Jackrabbit 2.2.6 ( webapp) deployed on a Glassfish Application server. We are also building a client to upload files to the server using the rmi interface exposed by the server. We are ...
2
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
263 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
284 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
2answers
330 views
Filtering “MetaData”-nodes from xpath-query in magnolia jcr
i have a problem filtering specific nodes of a jackrabbit jcr in magnolia.
when i submit following query : //element(*, standort)//*
i get:
33 nodes returned in 18ms
/standort/Standorte/MetaData
...
2
votes
3answers
321 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
498 views
JCR vs. CMIS: Which repository API should I use?
I am starting a new project that needs to connect to a repository that offers JCR and CMIS APIs.
The project is in Java and both APIs offer every operation we need.
What API would you chose and why? ...
2
votes
1answer
363 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
390 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
224 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
781 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
33 views
JCR SQL2 query with dynamic date comparison
I need to query the jcr repository to find nodes where a date property (e.g. jcr:created) is younger than a specific date.
Using SQL2, I do the check "jcr:created > date" like that (which works ...
1
vote
1answer
78 views
Jcr (Modeshape) Binary content Serializable
I'm using Modeshape 2.6.0.I have two types of content : binary content and metadata..
The binary is saved in jcr:data property of the CR node. I'm getting the content via ...
1
vote
1answer
73 views
Trouble enforcing read-write ACL to Jackrabbit users on versionable nodes
We are using Jackrabbit 2.2.7 to develop a repository for xml documents.
We want to create a bunch of users for the repository and enforce some sort of read-only and read-write access privileges on ...
1
vote
1answer
146 views
JCR SQL2 Multivalue properties search
I want to do a search in the content repository using one or more of the values as an input parameter for a multivalue property
Something like: find all nodes with the primary type 'nt:unstructured' ...
1
vote
1answer
123 views
1
vote
1answer
116 views
Update content of node in JCR 2.0
I try to update node in JCR 2.0
InputStream content = node.getProperty("jcr:content").getProperty("jcr:data").getBinary().getStream();
//TODO same with stream
Binary value = ...;
Node contentNode ...
1
vote
1answer
117 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
147 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
69 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
2answers
83 views
jcr node detach: using JcrNode properties outside of session scope (like some kind of DTO)
Currently doing a test-app with JCR (Modeshape).
The abstracted flow is as follows: session.open, a repository fetches on or more nodes related to a query, session.close.
The resulting nodes ...
1
vote
3answers
177 views
opensource code for JCR UI builder
Given a JCR (Java content repository, implementing standards jsr-170 and/or jsr-283, like Apache Jackrabbit, JBoss Modeshape), I would like to build a cms-like editor that given a specified JCR-node ...
1
vote
2answers
152 views
JCR JSP taglib implementation
I'm looking for jsp taglib implementation for jcr. I need something for access to jcr Node's and Node's properties in xpath style.
Could anybody recommend me something.
Thanks in advance.
1
vote
1answer
290 views
Explanation and use cases of JCR workspace for human beings
Could please anybody interpret JCR 2.0 specification in regard to JCR workspaces ?
I understand that a session is always bound to exactly one persistent workspace, though a single persistent ...
1
vote
1answer
136 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
1answer
92 views
Scaling Repositories horizontally on common x86 hardware
I was wondering if you guys had any tips which repository implementation has good clustering and horizontal scaling characteristics on common hardware?
The problem is that we have to implement a ...
1
vote
1answer
260 views
spring (Roo) + JCR (Jackrabbit..)
I want to develop an application with an admin tool to manage the content (articles...) of the website...I would like to use SPRING (ROO) but I do not know if there is any JCR API working with it ? I ...
1
vote
2answers
207 views
Jackrabbit / JCR organisation of text content data
i was thinking about, how to organize "normal" text content (i.e a String, HTML Code ...) in Jackrabbit.
Are there any recommended structures for plain text content (like for files)?
Should i store ...
1
vote
0answers
213 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
175 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
229 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
199 views
JackRabbit - Removal of duplicate rows
I have asked this question on jackrabbit-users list but I didn't get an answer.
JCR-SQL2 doesn't provide a SELECT DISTINCT (or similar, AFAIK). Neither do SQL or XPATH in JCR 1.0... How are people ...
1
vote
3answers
2k views
CMS - Alfresco, Magnolia, Drupal and Joomla Comparison
I am comparing Alfresco, Magnolia & Joomla especially specific to following features:
a. Ease of Integration of user created templates.
b. JCR (JSR-170?) or CMIS compliance.
c. ...
1
vote
1answer
196 views
JCR Re-opening Connections
I am using JCR 1.0 and I am having problems re-opening JCR connections after I close them.
Here are my two helper methods:
private void openConnection() throws Exception {
loadDbProperties();
...
1
vote
1answer
592 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
1answer
227 views
Jackrabbit Running Queries against UUID
I am using Jackrabbit and I am trying to query for an existing node which has a UUID.
My code is shown below. The problem is that UUID for referenceNode is of the form ...
1
vote
2answers
124 views
How to intercept server restart for GWT-based application?
I develop web-application which uses GWT for clients and JCR (Jackrabbit) for persistence.
Maven GWT plug-in (mvn gwt:run) launches some UI where communication between clients and server is tracked. ...
1
vote
2answers
113 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 ...