I know that in rabbitmq
latest versions, they have simplified the template of rabbitmq.conf
file. But for the older versions it has a more complex format, which is more dynamic than structured. I need to read and write those conf files through java.
My conf file is like this:
[{rabbit,[
{ssl_listeners, [5671]}
]}]
I would like to know if there is any standard way (e.g. a java parser) available for parsing it, before I proceed writing my own custom parser.