java - Spring @Value To Data Structure -
my properties file
customer1.username = ""; customer1.passwword =""; customer1.integratorkey="" customer2.username = ""; customer2.passwword =""; customer2.integratorkey=""
is there way can use @value annotation , load value in data structure 6 values in it
java code @value annotation:
@value("${customer1.username}") private string customer1username;
Comments
Post a Comment