Hi. I want to have a Map constant on my application. How can I fill it? For example, if it's a List I can do this:
public static final Collection myList = Arrays.asList(firstThing, secondThing);
I would like to have a similar thing but with a map. How can I do that?