InterviewSolution
| 1. |
What is the definition of a content repository? What exactly is JCR (Java Content Repository)? |
|
Answer» A content repository is ESSENTIALLY a storage LOCATION for digital content. The content repository's structure is often hierarchical and represented as a TREE structure, with each node of the tree serving as a storage location for content. Java Content Repository is a Java community specification for accessing content repositories in a consistent MANNER (platform-independent and vendor-independent way). JSR-170(JCR 1.0) was the first version of the specification, and version 2 was released subsequently (JCR-283). The javax.JCR API gives ACCESS to a content repository through multiple classes and interfaces. |
|