将 Apache Felix SCR 迁移到 OSGI 声明式服务

Migrating Apache Felix SCR to OSGI Declarative Services

我正在从 Apache Felix SCR 注释迁移到 OSGI 声明式服务,这是我的问题。

之前我有:SCR注解实现

@Component (ds = true, immediate = true, metatype = false, policy = ConfigurationPolicy.OPTIONAL)
@Service (SampleService.class)
public class SampleServiceImpl implements SampleService
{
 ..
 ..
}

现在我有了:DS 注释实现

@Component (configurationPolicy = ConfigurationPolicy.OPTIONAL, immediate = true, service = SampleService.class)
public class SampleServiceImpl implements SampleService
{
 ..
 ..
}

在 DS 注释实现中我必须如何映射 dsmetatype 参数?

否则可以忽略 ds 和元类型参数吗?

ds=true 以及 metatype=false 无论如何都是默认值。在您的案例中,您可以安全地忽略它们。