AEM 6.3使用OSGi R6注释和吊索模型 [英] AEM 6.3 Using OSGi R6 Annotations and Sling Models

查看:105
本文介绍了AEM 6.3使用OSGi R6注释和吊索模型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图使用OSGi R6批注创建OSGi服务,然后将其注入Sling Model类中,如下所示:

I am trying to create an OSGi Service using OSGi R6 annotations and then injecting it in the Sling Model class like this:

   package com.aem.sites.models;

import javax.annotation.PostConstruct;
import javax.inject.Inject;

import org.apache.sling.api.resource.Resource;
import org.apache.sling.models.annotations.Model;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.aem.sites.services.WeatherService;

@Model(adaptables=Resource.class)
public class Banner {

    final static Logger logger = LoggerFactory.getLogger(Banner.class);

    @Inject
    private WeatherService weatherService;

    private String message;

        @PostConstruct
        public void init() {
            logger.info("##############################################################calling the init method");
            message = weatherService.getName();
        }

        public String getMessage() {
            logger.info("##############################################################inside the get message method");
            return message;
        }

}

OSGi配置界面如下:

The OSGi configuration interface looks like this:

    package com.aem.sites.interfaces;

import org.osgi.service.metatype.annotations.AttributeDefinition;
import org.osgi.service.metatype.annotations.AttributeType;
import org.osgi.service.metatype.annotations.ObjectClassDefinition;

@ObjectClassDefinition(name = "Configuration", description = "Configuration file")
public @interface Configuration {

     @AttributeDefinition(
                name = "String Property",
                description = "Sample String property",
                type = AttributeType.STRING
            )
     public String getText() default "It's a test";
}

服务类如下:

   package com.aem.sites.services.impl;


import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Deactivate;
import org.osgi.service.component.annotations.Modified;
import org.osgi.service.component.annotations.ConfigurationPolicy;
import org.osgi.service.metatype.annotations.Designate;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;


import com.aem.sites.interfaces.Configuration;
import com.aem.sites.services.WeatherService;

@Component(service=WeatherService.class,
immediate=true,
configurationPid = "com.aem.sites.services.impl.WeatherServiceImpl",
configurationPolicy=ConfigurationPolicy.REQUIRE
)
@Designate(ocd = Configuration.class)
public class WeatherServiceImpl implements WeatherService{

    final static Logger logger =LoggerFactory.getLogger(WeatherServiceImpl.class);

    private Configuration config;

    private String name;

    @Activate
    @Modified
    protected final void activate(Configuration configuration) {
        logger.info("##############################################################calling activate method inside the weather service impl class");
        this.config = configuration;
        name = config.getText();
    }

    @Deactivate
    protected void deactivate() {
    }

    @Override
    public String getName() {
        logger.info("##############################################################calling get name method inside the weather service impl class");
        return name;
    }
}

最后是服务接口:

package com.aem.sites.services;

public interface WeatherService {

    public String getName();

}

我试图像这样在HTL类中使用Sling Model Pojo:

I am trying to use the Sling Model Pojo in the HTL class like this:

<sly data-sly-use.banner="com.aem.sites.models.Banner">

    <div class="inner">
        <h2>${banner.message}</h2

    </div>

</sly>

但是我看不到任何文本.我使用了logger.info,但也无法在日志文件中看到它.我确定我在这里做错了什么,但由于我刚开始使用OSGi R6注释和Sling模型而无法定位.任何帮助表示赞赏.

添加Maven依赖项:

But I am not able to see any texts. I have used the logger.info but can't see it in the log files either. I am sure I am doing something very wrong here but unable to locate since I have just started playing with OSGi R6 annotations and Sling Models. Any help is appreciated.

Adding Maven dependencies:

父pom.xml

<!-- <plugin>
                    <groupId>org.apache.felix</groupId>
                    <artifactId>maven-bundle-plugin</artifactId>
                    <version>2.5.3</version>
                </plugin>  -->             
                <plugin>
                      <groupId>org.apache.felix</groupId>
                      <artifactId>maven-bundle-plugin</artifactId>
                      <version>3.3.0</version>
                      <inherited>true</inherited>
                </plugin>

<dependency>
              <groupId>org.osgi</groupId>
              <artifactId>org.osgi.service.component.annotations</artifactId>
              <version>1.3.0</version>
               <scope>compile</scope>
            </dependency>

            <dependency>
              <groupId>org.osgi</groupId>
              <artifactId>org.osgi.annotation</artifactId>
              <version>6.0.0</version>
            </dependency>

            <dependency>
              <groupId>org.osgi</groupId>
              <artifactId>org.osgi.service.metatype.annotations</artifactId>
              <version>1.3.0</version>
            </dependency>

核心pom.xml

<dependency>
              <groupId>org.osgi</groupId>
              <artifactId>org.osgi.service.component.annotations</artifactId>
            </dependency>
            <dependency>
              <groupId>org.osgi</groupId>
              <artifactId>org.osgi.annotation</artifactId>
            </dependency>
            <dependency>
              <groupId>org.osgi</groupId>
              <artifactId>org.osgi.service.metatype.annotations</artifactId>
            </dependency>

<plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <extensions>true</extensions>
                <configuration>
                    <instructions>
                        <Bundle-SymbolicName>com.aem.site.aem-site</Bundle-SymbolicName>
                        <Sling-Model-Packages>
                          com.aem.sites.models
                        </Sling-Model-Packages>
                         <Import-Package>javax.inject;version=0.0.0,*</Import-Package>
                    </instructions>
                </configuration>
            </plugin>   

推荐答案

在服务提示中,您输入了错误的service=WeatherServiceImpl.class,它应该是服务接口名称.

In the service impl you have put service=WeatherServiceImpl.class which is incorrect, it should be the service interface name.

因此,在WeatherServiceImpl中进行更改

so, in WeatherServiceImpl change

 @Component(service=WeatherServiceImpl.class,

 @Component(service=WeatherService.class,

..

编辑:同样,configurationPolicy=ConfigurationPolicy.REQUIRE表示应至少有一个配置才能使DS组件处于活动状态. (通过代码进行配置将无效)

EDIT: also configurationPolicy=ConfigurationPolicy.REQUIRE means that there should be at least one config in order for the DS component to be active. (config from code wont work)

因此您可以转到系统/system/console/configMgr/com.aem.sites.services.impl.WeatherServiceImpl并输入值并保存.或者您可以将configurationPolicy设置为可选,而您的代码无需配置即可工作.

so you can go to system /system/console/configMgr/com.aem.sites.services.impl.WeatherServiceImpl and put a value and save. or you can set configurationPolicy to optional and your code will work without config.

这篇关于AEM 6.3使用OSGi R6注释和吊索模型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆