Created
September 17, 2014 11:20
-
-
Save sizovs/5fc7db23773b26c6762a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Autowired | |
@ConfigurableMap(value = "map", keyType = Long, valueType = Long) | |
private IConfProperty<Map<Long, Long>> map | |
@Autowired | |
@ConfigurableProperties(value = "props") | |
private IConfProperty<Properties> props | |
@Autowired | |
@ConfigurableList(value = "list", itemType = Long) | |
private IConfProperty<List<Long>> list | |
@Autowired | |
@ConfigurableBean(value = "bean", itemType = ABean) | |
private IConfProperty<ABean> bean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment