Apache Sling – A REST-based Web Application Framework
Carsten Ziegeler | cziegeler@apache.org
ApacheCon NA 2014
Apache Sling A REST-based Web Application Framework Carsten - - PowerPoint PPT Presentation
Apache Sling A REST-based Web Application Framework Carsten Ziegeler | cziegeler@apache.org ApacheCon NA 2014 About cziegeler@apache.org @cziegeler RnD Team at Adobe Research Switzerland Member of the Apache So fu ware
ApacheCon NA 2014
2
§ Publish and process huge amount of information § Highly dynamic § Different types § Different output formats § Collaboration and integration § Fast changing requirements § Rapid prototyping and development § Dynamic, extensible but maintainable
3
§ Publish and process huge amount of information § Highly dynamic § Different types § Different output formats § Collaboration and integration § Fast changing requirements § Rapid prototyping and development § Dynamic, extensible but maintainable
4
§ Web framework § Java Content Repository (JCR) § ROA / REST § Scripting Inside § OSGi § Apache Open Source top level project § htup://sling.apache.org § Driving force behind several OSGi related projects at Apache
5
6
7
8
9
§ A data storage should be fmexible and § Allow to model app data in the “right” way § Optimal way of dealing with the data in the app
10
§ A data storage should be fmexible and § Allow to model data in the “right” way § What is the “right” way? § Tables? § Key-Value-Pairs? § Schema based? § Semi structured or even unstructured? § Flat, hierarchical or graph?
11
§ Tie right way depends on the application: § Tables § Key-Value-Pairs § Schema based § Semi structured and unstructured § Flat, hierarchical, and graph § … § An app might have more than one “right” way § But: A lot of data can be modeled in a hierarchy
12
13
§ Hierarchical content § Nodes with properties § (Table is a special tree) § Structured § Nodetypes with typed properties § And/or semi structured and unstructured § Fine and coarse-grained § Single repository for all content!
14
15
16
17
§ Apache Jackrabbit supports JAAS § Custom login modules possible § Deny / Allow of privileges on a node § Like read, write, add, delete § Inheritance from parent § Tree allows structuring based on access rights § Access control is done in the data tier!
18
19
Read for everyone, write for owner Write for owner
§ (Java) Standard – Version 1.0 and 2.0 § Supported by many vendors § Used by many products and projects § Several open source solutions § Data model and features § Query and observation
20
21
21
22
§ htup://…/products/books/english/it/databases/apachejackrabbit.(html|
§ htup://…/products.jsp?id=5643564
23
24
25
§ Digital Asset Management § Hierarchical storage of pictures § Upload § Tagging § Searching § Automatic thumbnail generation § Sample application from Apache Sling
26
27
28
29
30
31
§ URI Decomposition § Resource and representation
§ Resource Path Selectors Extension § Content retrieved from resource tree § Rendering based on resource type, selectors and extension
32
33
34
35
36
37
38
39
§ GET à Extension (html) § Else -> Method ( POST, PUT, DELETE…)
40
41
42
43
<%@page import="org.apache.sling.api.resource.Resource,
%><%@taglib prefix="sling" uri="http://sling.apache.org/taglibs/sling/1.0" %><% %><sling:defineObjects/><% final final ValueMap ValueMap attributes = attributes = resource.getValueMap resource.getValueMap(); (); final final String String albumName albumName = = attributes.get attributes.get(”title” ”title”,Resource.getName Resource.getName()); ()); %><html> <head> <title>Album <%= albumName %></title> </head> <body> … <h2>Contained Albums</h2> <% for for ( ( final final Resource current : Resource current : resource.getChildren resource.getChildren() ) { () ) { if if ( ( current.isResourceType current.isResourceType(Constants.RESOURCETYPE_ALBUM Constants.RESOURCETYPE_ALBUM) ) ) { %><sling:include resource="<%= current %>”/><% } } %>
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59