Esta conversación ha sido bloqueada debido a la inactividad. Cree una nueva publicación.
Nivel 1
Nivel 2
Iniciar sesión en la comunidad
Iniciar sesión para ver todas las insignias
Esta conversación ha sido bloqueada debido a la inactividad. Cree una nueva publicación.
hello friends I am in the process of learning the servlet sling and I am
trying to read a parent node and bring all the information it contains to
store it in a json and send it to the view I would appreciate a way to do
thank you acontinuacion I leave an example of what I want to achieve
In summary, I want to obtain the data of the subnodes of the subnosdo in and store them in an array with a servlet sling. I appreciate all the help you can give me.
¡Resuelto! Ir a solución.
Vistas
Respuestas
Total de me gusta
Hi,
You can use JCR Node API or Resource API to get child resource and adapt to Node API/Value Map
Node (Content Repository for Java Technology API Version 2.0)
ValueMap and his friends - Experience Delivers
Resource resource = resolver.getResource("/content/testsling/slingmodel");
ValueMap valueMap=resource.adaptTo(ValueMap.class);
response.getWriter().write("Output from ValueMap is First Name: "+valueMap.get("firstName").toString()+" Last Name: "+valueMap.get("lastName").toString()+" Technology: "+valueMap.get("technology").toString()+"");
UserInfo userInfo = resource.adaptTo(UserInfo.class);
response.getWriter().write("Output from Sling Model is First Name: "+userInfo.getFirstName()+" Last Name: "+userInfo.getLastName()+" Technology: "+userInfo.getTechnology());
Vistas
Respuestas
Total de me gusta
Hi,
You can use JCR Node API or Resource API to get child resource and adapt to Node API/Value Map
Node (Content Repository for Java Technology API Version 2.0)
ValueMap and his friends - Experience Delivers
Resource resource = resolver.getResource("/content/testsling/slingmodel");
ValueMap valueMap=resource.adaptTo(ValueMap.class);
response.getWriter().write("Output from ValueMap is First Name: "+valueMap.get("firstName").toString()+" Last Name: "+valueMap.get("lastName").toString()+" Technology: "+valueMap.get("technology").toString()+"");
UserInfo userInfo = resource.adaptTo(UserInfo.class);
response.getWriter().write("Output from Sling Model is First Name: "+userInfo.getFirstName()+" Last Name: "+userInfo.getLastName()+" Technology: "+userInfo.getTechnology());
Vistas
Respuestas
Total de me gusta
Nice Response Arun!
Vistas
Respuestas
Total de me gusta
Vistas
me gusta
Respuestas