@NestedConfigurationProperty

From NovaOrdis Knowledge Base
Revision as of 23:41, 2 January 2019 by Ovidiu (talk | contribs)
Jump to navigation Jump to search

Internal

Example

@Component
@ConfigurationProperties(prefix = "example.cryptm")
public class CryptmPropertyConfiguration {

    private String masterKeyArn;

    ...

    @NestedConfigurationProperty
    private DataKeyCachingConfiguration dataKeyCaching;

    ...
}