jcr-sql2 Questions
2
Working with a JCR-SQL2 query I noticed that the CONTAINS operator finds nodes
which do not have exactly the same string that was in the condition.
Example
The following query:
SELECT * FROM [n...
3
I know how to search for something in the JCR via JCR SQL2 queries.
However, I would like to use Java in certain cases, using the JCR API: javax.jcr.Node, javax.jcr.NodeIterator and the like.
I'm...
1
I am attempting to grab multiple nodes of the same type from different areas in the jcr and order them by a date.
SELECT * FROM [social:asiResource]
WHERE [sling:resourceType] = 'social/qna/compo...
2
Solved
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 C...
Vertumnus asked 12/10, 2015 at 14:51
0
I'm trying to get full-text search working with modeshape. I'm particularly interested in ranked results based on lucene index. Here is my repository configuration
"indexProviders": {
"lucene": ...
Gipsy asked 3/12, 2015 at 7:22
3
I am using Apache Jackrabbit as a database.
In my case, root node has numbers of child nodes(only at depth 1).
All child node has unique name, i.e., some Integer.
Each child Node have some propert...
Equidistant asked 22/5, 2013 at 17:33
2
Solved
I use an application where we can manipulate JCR nodes, typically you would rename, remove, delete, or else move them.
Using the JCR API, I can access the nodes in my repository and return a set o...
2
Solved
I have created the node and created 3 versions.
String path = "/my111";
MyClass m1 = new MyClass();
m1.setPath(path);
m1.setName("Myname");
m1.setLanguage("English");
ocm.create(m1);
ocm.save(); ...
Hellbox asked 20/12, 2012 at 8:30
1
Solved
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...
Mudcat asked 1/11, 2011 at 15:5
1
© 2022 - 2024 — McMap. All rights reserved.