下面是我的简单OSGi组件的代码
@Component(metatype = true, label = "My Component", policy = ConfigurationPolicy.REQUIRE)
@Property(label = "My Component's expression", name = "my.expression", value = "/5 * * * * ? *")
public class MyComponent {
private static final Logger log = LoggerFactory.getLogger(MyComponent.class);
@Reference
private Scheduler scheduler;
@Activate
public void activate(final ComponentContext context) {
final String quartzExpression = PropertiesUtil.toString(
context.getProperties().get("my.expression"), "");
ScheduleOptions options = scheduler.EXPR(quartzExpression).name("MyJob");
scheduler.schedule(new Runnable() {
@Override
public void run() {
log.info("Hello World!");
}
}, options);
}
}
它应该做什么:它采用一个Quartz表达式的配置值,并使用它来安排记录简单问候语的作业。
默认情况下,我希望每5秒执行一次作业,该属性的默认值为。现在,因为我还指定了ConfigurationPolicy.REQUIRE
,我实际上需要创建配置。为此,我转到OSGi控制台的配置管理器,在列表中找到My Component
并单击它。此时,发送请求以获取配置对话框数据。响应包含标签,名称和默认值等内容。在我的情况下,默认值返回为/5\\ *\\ *\\ *\\ *\\ ?\\ *
,并在对话框中显示为/5\ *\ *\ *\ *\ ?\ *
。
现在,如果我手动删除所有反斜杠,则会保存配置,稍后会正确提取并使组件按预期工作。我的问题是,为什么代码中指定的默认值与我在配置管理器中从OSGi收到的默认值不一样?
编辑:经过进一步调查,我认为它可能是由我用来生成组件描述符的Maven SCR插件引起的。它会生成这两个文件:.\target\classes\OSGI-INF\MyComponent.xml
:
<?xml version="1.0" encoding="UTF-8"?><components xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0">
<scr:component name="MyComponent" configuration-policy="require" activate="activate">
<implementation class="MyComponent"/>
<property name="my.expression" value="/5 * * * * ? *"/>
<property name="service.pid" value="MyComponent"/>
<reference name="scheduler" interface="org.apache.sling.commons.scheduler.Scheduler" cardinality="1..1" policy="static" bind="bindScheduler" unbind="unbindScheduler"/>
</scr:component>
</components>
这一个:.\target\classes\OSGI-INF\metatype\MyComponent.xml
<?xml version="1.0" encoding="UTF-8"?><metatype:MetaData xmlns:metatype="http://www.osgi.org/xmlns/metatype/v1.0.0" localization="OSGI-INF/metatype/MyComponent">
<OCD id="MyComponent" name="%MyComponent.name" description="%MyComponent">
<AD id="my.expression" type="String" name="%MyComponent.my.expression" />
</OCD>
<Designate pid="MyComponent">
<Object ocdref="MyComponent"/>
</Designate>
</metatype:MetaData>
看起来metatype
元数据未正确生成。
答案 0 :(得分:4)
这实际上是两年前实施的Maven SCR插件的预期行为,用于解析problem with encoding regular expressions作为默认值 - 可以找到提交here。
找到它。