Questions tagged [jackrabbit]

The Apache Jackrabbit™ content repository is a fully conforming implementation of the Content Repository for Java Technology API (JCR, specified in JSR 170 and 283). A content repository is a hierarchical content store with support for structured and unstructured content, full text search, versioning, transactions, observation, and more.

The Apache Jackrabbit content repository is a fully conforming implementation of the Content Repository for Java Technology API (JCR, specified in JSR 170 and 283).

A content repository is a hierarchical content store with support for structured and unstructured content, full text search, versioning, transactions, observation, and more.

Useful Links:

665 questions
28
votes
3 answers

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 ModeShape somehow linked to JBoss ? I don't have much…
lisak
  • 21,611
  • 40
  • 152
  • 243
28
votes
3 answers

What is the purpose behind building of Apache Sling, Felix, Jackrabbit projects

I am asking a very basic question here. Question is I am using Apache Sling , Apache Jackrabbit, Apache Felix in my project as said by my instructor. I am trying to understand why these software is developed by Apache. I tried a lot on the…
devsda
  • 4,112
  • 9
  • 50
  • 87
22
votes
2 answers

Apache Jackrabbit JCA 2.7.5 .docx and .xlsx indexing

I'm ussing the Appache Jackrabbit JCA 2.7.5, the problem is that files .docx and .xlsx is not indexed. My steps : Deploy the Jackrabbit JCA as resource adapter on glassfish create a Connector Connection Pool for the resource adapter indicating the…
Aroniaina
  • 1,252
  • 13
  • 31
22
votes
2 answers

How/When is CRX and Apache Jackrabbit used in CQ5/AEM?

Lately, I have spent some time trying to better understand the AEM technology stack. There are so many pieces, it seems easy to get confused. I have been looking over the JCR implementations on AEM. I keep reading that it uses CRX. However, I…
Woodifer
  • 1,019
  • 1
  • 7
  • 15
14
votes
5 answers

jackrabbit-standalone-2.4.0.jar Populate does not work

I just downloaded and started Jackrabbit using: java -jar jackrabbit-standalone-2.4.0.jar When I call the populate.jsp, I get this error: Error while accessing the repository: LoginModule ignored Credentials Check the configuration or use the…
Bevo
  • 530
  • 5
  • 17
14
votes
1 answer

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 = session.getRootNode().getNode("wiki:encyclopedia/wiki:entry[1]/"); File file = new File("rose.gif"); …
Steve
  • 11,831
  • 14
  • 51
  • 63
13
votes
2 answers

What's the Difference Between Apache Jackrabbit and Jackrabbit Oak?

I'm sorry if this sounds stupid, but what's the difference between Jackrabbit and Oak? I'm looking into JCR170, specifically how to migrate content between two jackrabbit installations, and I've come across both JackRabbit and Oak. The Apache…
Goldentoa11
  • 1,700
  • 2
  • 17
  • 29
11
votes
2 answers

JCR checkin/checkout operations

I'm just starting to work with JCR (apache jackrabbit), i want to ask simple question (because i coudn't find good tutorial for it): So for what do i need Node.checkout and Node.checkin methods? What do they mean? Thx
user253202
11
votes
3 answers

What are Advantages to Content Repositories (not talking about CMS's)

Given that a lot of people use content repositories. There must be a good reason. I'm building out a new web application that will need to store content. Can someone help me understanding this? What are the advantages to using a content repository…
Bill Rosmus
  • 2,941
  • 7
  • 40
  • 61
10
votes
5 answers

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 time consuming and labor intensive (had to write…
Chinnery
  • 10,179
  • 2
  • 23
  • 25
9
votes
3 answers

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 SimpleCredentials("username",…
Abhishek Dhote
  • 1,638
  • 10
  • 41
  • 62
9
votes
1 answer

maven conditional dependencies

We would like to bundle library dependencies from (Alfresco or Jackrabbit or ...) based on the customer choice. The number of dependencies actually varies based on the chosen vendor. How do we provide hooks at the maven level, so that the final…
Joe
  • 14,513
  • 28
  • 82
  • 144
9
votes
1 answer

Any good reference for JQOM?

Apache Jackrabbit includes some sort of database/archive query mechanism called JQOM. Where is a good place to start learning about what it is and how it works? Thanks in advance.
Aaron Watters
  • 2,784
  • 3
  • 23
  • 37
9
votes
3 answers

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 make my life as developer easier.
user141634
  • 393
  • 1
  • 4
  • 8
8
votes
4 answers

How to change the admin password in jackrabbit

Hi I am using embedded jackrabbit with tomcat. I wanted to change the default password for admin user to something else so it's secure and safe. I saw in repository.xml place to update adminId to different id but it by defaults takes the same…
1
2 3
44 45