Sling CMS 学习:bundles(五)

一,创建Sling Bundle Project

pom.xml




    4.0.0
    com.quincy.sling
    com.quincy.sling.core
    bundle
    0.0.1-SNAPSHOT
    com.quincy.sling.core
    com.quincy.sling - com.quincy.sling.core
    
        
            
                org.apache.felix
                maven-scr-plugin
                1.16.0
                
                    
                        generate-scr-descriptor
                        
                            scr
                        
                    
                
            
            
                org.apache.felix
                maven-bundle-plugin
                true
                2.4.0
                
					
						
							com.quincy.core.models
						
					
				
            
            
                org.apache.maven.plugins
                maven-compiler-plugin
                3.1
                
                    6
                    6
                
            
            
                org.apache.sling
                maven-sling-plugin
                2.1.0
                
                    http://localhost:8080/system/console
                    admin
                    admin
                
            
        
    
    
        
            javax.servlet
            servlet-api
            2.5
            provided
        
        
            org.osgi
            org.osgi.compendium
            4.2.0
            provided
        
        
            org.osgi
            org.osgi.core
            4.2.0
            provided
        
        
            javax.jcr
            jcr
            2.0
            provided
        
        
            org.apache.sling
            org.apache.sling.api
            2.18.2
            provided
        
        
            org.slf4j
            slf4j-api
            1.5.10
            provided
        
        
            org.apache.felix
            org.apache.felix.scr.annotations
            1.9.8
            provided
        
        
            junit
            junit
            3.8.1
            test
        
         
            org.apache.sling
            org.apache.sling.models.api
            1.2.2
			provided
        
        
        
			org.osgi
			org.osgi.service.component.annotations
			1.4.0
			provided
		
		
        
    
    
        
            autoInstallBundle
            
                
                    
                        org.apache.sling
                        maven-sling-plugin
                        
                            
                                install-bundle
                                
                                    install
                                
                            
                        
                    
                
            
        
    
    
        UTF-8
    

发布bundle:mvn clean install -PautoInstallBundle

Sling CMS 学习:bundles(五)_第1张图片

二,创建models

Sling CMS 学习:bundles(五)_第2张图片

package com.quincy.core.models;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;

import javax.annotation.PostConstruct;
import org.apache.sling.api.resource.Resource;
import org.apache.sling.models.annotations.Model;
import org.apache.sling.models.annotations.injectorspecific.ValueMapValue;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.quincy.core.utils.CMSUtils;

@Model(adaptables={Resource.class})
public class TestComponentResource {

	private static final Logger log = LoggerFactory.getLogger(TestComponentResource.class);
	
	private Resource resource;
	private String resourceName;
	private String resourcePath;
	
	private String pageName;
	private String pagePath;
	
	private List> childrenPage;
	
	public TestComponentResource(Resource resource){
	    this.resource = resource;
	}
	
	@PostConstruct
	public void init(){
		resourceName = resource.getName();
		resourcePath = resource.getPath();
		
		Resource pageRsrc = CMSUtils.findParentResourceofType(resource, "sling:Page");
		pageName = pageRsrc.getName();
		pagePath = pageRsrc.getPath();
		
		Iterable children = pageRsrc.getChildren();
		childrenPage = new ArrayList>();
		for (Iterator iter = children.iterator(); iter.hasNext();) {
			Resource item = iter.next();
			if ("sling:Page".equals(item.getValueMap().get("jcr:primaryType", String.class))) {
				Map i = new HashMap();
				i.put("pageName", item.getName());
				i.put("pagePath", item.getPath());
				childrenPage.add(i);
			}
		}
	}
		
	@ValueMapValue
	private String text;
	
	public String getText() {
		return text;
	}

	public Resource getResource() {
		return resource;
	}

	public void setResource(Resource resource) {
		this.resource = resource;
	}

	public void setText(String text) {
		this.text = text;
	}

	public String getResourceName() {
		return resourceName;
	}

	public void setResourceName(String resourceName) {
		this.resourceName = resourceName;
	}

	public String getResourcePath() {
		return resourcePath;
	}

	public void setResourcePath(String resourcePath) {
		this.resourcePath = resourcePath;
	}

	public String getPageName() {
		return pageName;
	}

	public void setPageName(String pageName) {
		this.pageName = pageName;
	}

	public String getPagePath() {
		return pagePath;
	}

	public void setPagePath(String pagePath) {
		this.pagePath = pagePath;
	}

	public List> getChildrenPage() {
		return childrenPage;
	}

	public void setChildrenPage(List> childrenPage) {
		this.childrenPage = childrenPage;
	}
	
}
package com.quincy.core.models;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import javax.annotation.PostConstruct;
import org.apache.sling.api.SlingHttpServletRequest;
import org.apache.sling.api.resource.Resource;
import org.apache.sling.api.resource.ResourceResolver;
import org.apache.sling.models.annotations.Model;
import org.apache.sling.models.annotations.injectorspecific.ValueMapValue;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@Model(adaptables={SlingHttpServletRequest.class})
public class TestComponentRequest {

	private static final Logger log = LoggerFactory.getLogger(TestComponentRequest.class);
	
	private SlingHttpServletRequest request;
	
	public TestComponentRequest(SlingHttpServletRequest request){
	    this.request = request;
	}
	
	@PostConstruct
	public void init(){
		//text = "test-text";
	}
	
	@ValueMapValue
	private String text;
	
	public String getText() {
		return text;
	}

	public SlingHttpServletRequest getRequest() {
		return request;
	}

	public void setRequest(SlingHttpServletRequest request) {
		this.request = request;
	}

	public void setText(String text) {
		this.text = text;
	}
		
}
<%@include file="/libs/sling-cms/global.jsp"%>

	TestComponentRequest: ${testComponentRequest.text} 
TestComponentResource-text: ${testComponentResource.text}
TestComponentResource-resource: ${testComponentResource.resourceName}------${testComponentResource.resourcePath}
TestComponentResource-page: ${testComponentResource.pageName}------${testComponentResource.pagePath}
TestComponentResource-childrenPage:
     Item ${page.index} : ${page.pageName} --- ${page.pagePath}

三,CMSUtils

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.sling.api.resource;

import java.util.Iterator;

import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;

import org.apache.sling.api.adapter.Adaptable;

import org.osgi.annotation.versioning.ProviderType;

/**
 * Resources are pieces of content on which Sling acts
 * 

* The Resource is also an {@link Adaptable} to get adapters to * other types. A JCR based resource might support adapting to the JCR Node on * which the resource is based. *

* A Resource object is valid for as long as the * ResourceResolver that provided this instance is valid. The * same applies in general to all objects returned by this instance, * especially those returned by a call to {@link #adaptTo(Class)}. *

* All implementations must support returning a value map from * {@link #getValueMap()}, even if the map is empty. *

* Implementor's Note: It is recommended to not implement this interface * directly. Rather consider either extending from {@link AbstractResource} or * {@link ResourceWrapper}. This will make sure your implementation will not be * suffering from missing method problems should the Sling Resource API be * extended in the future. */ @ProviderType public interface Resource extends Adaptable { /** * The special resource type for resource instances representing nonexisting * resources (value is "sling:nonexisting"). This resource type is used by * {@link ResourceResolver} instances to mark a resource which could not * actually be resolved. * * @see #getResourceType() * @see ResourceUtil#isNonExistingResource(Resource) * @see ResourceResolver#resolve(javax.servlet.http.HttpServletRequest, * String) */ String RESOURCE_TYPE_NON_EXISTING = "sling:nonexisting"; /** * Returns the absolute path of this resource in the resource tree. * @return The resource path */ @Nonnull String getPath(); /** * Returns the name of this resource. The name of a resource is the last * segment of the {@link #getPath() path}. * * @return The resource name * @since 2.1 (Sling API Bundle 2.2.0) */ @Nonnull String getName(); /** * Returns the parent resource or null if this resource * represents the root of the resource tree. * * @return The parent resource or {@code null}. * @throws org.apache.sling.api.SlingException If an error occurs trying to * get the resource object from the path. * @throws IllegalStateException if the resource resolver has already been * closed}. * @since 2.1 (Sling API Bundle 2.1.0) * @see ResourceResolver#getParent(Resource) */ @CheckForNull Resource getParent(); /** * Returns an iterator of the direct children of this resource. *

* This method is a convenience and returns exactly the same resources as * calling getResourceResolver().listChildren(resource). * * @return An iterator for child resources. * @throws org.apache.sling.api.SlingException If an error occurs trying to * get the resource iterator. * @throws IllegalStateException if the resource resolver has already been * closed}. * @since 2.1 (Sling API Bundle 2.1.0) * @see ResourceResolver#listChildren(Resource) */ @Nonnull Iterator listChildren(); /** * Returns an iterable of the direct children of this resource. *

* This method is a convenience and returns exactly the same resources as * calling getResourceResolver().getChildren(resource). * * @return An iterable for child resources * @throws org.apache.sling.api.SlingException If an error occurs trying to * get the resource iterator. * @throws IllegalStateException if the resource resolver has already been * closed}. * @since 2.2 (Sling API Bundle 2.2.0) * @see ResourceResolver#getChildren(Resource) */ @Nonnull Iterable getChildren(); /** * Returns the child at the given relative path of this resource or * null if no such child exists. *

* This method is a convenience and returns exactly the same resources as * calling getResourceResolver().getResource(resource, relPath). * * @param relPath relative path to the child resource * @return The child resource or {@code null} * @throws org.apache.sling.api.SlingException If an error occurs trying to * get the resource object from the path. * @throws IllegalStateException if the resource resolver has already been * closed}. * @since 2.1 (Sling API Bundle 2.1.0) * @see ResourceResolver#getResource(Resource, String) */ @CheckForNull Resource getChild(@Nonnull String relPath); /** * The resource type is meant to point to rendering/processing scripts, * editing dialogs, etc. It is usually a path in the repository, where * scripts and other tools definitions are found, but the * {@link ResourceResolver} is free to set this to any suitable value such * as the primary node type of the JCR node from which the resource is * created. *

* If the resource instance represents a resource which is not actually * existing, this method returns {@link #RESOURCE_TYPE_NON_EXISTING}. * @return The resource type */ @Nonnull String getResourceType(); /** * Returns the super type of the resource if the resource defines its * own super type. Otherwise null is returned. * A resource might return a resource super type to overwrite the * resource type hierarchy. * If a client is interested in the effective resource super type * of a resource, it should call {@link ResourceResolver#getParentResourceType(Resource)}. * @return The super type of the resource or {@code null}. * @throws IllegalStateException if this resource resolver has already been * {@link ResourceResolver#close() closed}. */ @CheckForNull String getResourceSuperType(); /** * Checks if the resource has any child resources. * * @return true if the resource has any child resources * @throws IllegalStateException if this resource resolver has already been * {@link ResourceResolver#close() closed}. * @since 2.4.4 (Sling API Bundle 2.5.0) */ boolean hasChildren(); /** * Is just a shortcut for {@code getResourceResolver().isResourceType(this, resourceType)}. * * @param resourceType the resource type to check this resource against * @see ResourceResolver#isResourceType(Resource, String) * @since 2.1.0 (Sling API Bundle 2.1.0) * @return true if the resource type or any of the resource's * super type(s) equals the given resource type, false otherwise; * false can also be returned if resourceType is null */ boolean isResourceType(String resourceType); /** * Returns the meta data of this resource. The concrete data contained in the * {@link ResourceMetadata} object returned is implementation specific * except for the {@link ResourceMetadata#RESOLUTION_PATH} property which is * required to be set to the part of the request URI used to resolve the * resource. * * @return The resource meta data * @see ResourceMetadata */ @Nonnull ResourceMetadata getResourceMetadata(); /** * Returns the {@link ResourceResolver} from which this resource has been * retrieved. * @return The resource resolver */ @Nonnull ResourceResolver getResourceResolver(); /** * Returns a value map for this resource. * The value map allows to read the properties of the resource. * @return A value map * @since 2.5 (Sling API Bundle 2.7.0) */ @Nonnull ValueMap getValueMap(); }

 

你可能感兴趣的:(Sling,CMS)