I have implemented some authorization in a webservice that needs be configured.
Currently the user/password combo is hardcoded into the bean configuration. I would l
you can use @Value.
@Value
Properties file:
users={test1:'test1',test2:'test2'}
Java code:
@Value("#{${users}}") private Map users;