作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下服务:
@Component(
immediate = true,
metatype = true)
@Service
@Property(name = EventConstants.EVENT_TOPIC, value = {ReplicationAction.EVENT_TOPIC})
public class MyService implements EventHandler {
@Property
private static final String MULTI_PROPERTY = "config.multiproperty";
........
//another implementation
........
}
MULTI_PROPERTY
作为数组值,有可能在图像上使用一组值:
最佳答案
使用 unbounded
属性来指定多值属性并使用 cardinality
属性来限制条目的数量。
@Property(unbounded = PropertyUnbounded.ARRAY, cardinality=10, label = "Some Label")
private static final String MULTI_PROPERTY = "config.multiproperty";
#toStringArray()
PropertiesUtil
的方法
PropertiesUtil.toStringArray(properties.get(MULTI_PROPERTY));
关于osgi - 如何在 OSGi 中使用多值(数组)属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35297722/
我是一名优秀的程序员,十分优秀!