This is a follow-up to my previous question (found here). My properties files so far consists of simple key-value pairs, like ints and Strings. I would now like to use it to place some more advanced structures in it, more specifically I need a Map<A, Integer> where A is a class i have defined, for example like so:
foo=bar,5;baz,10
Is this possible? If so, how should I format the file and parse the map, respectively?
Are there perhaps better ways to solve this?