The transportConnector uri in my activemq.xml config file is over 400 characters and I need to add even more to it. This is making it too hard to read and later edit.
<transportConnector name="ssl" uri="ssl://0.0.0.0:61617?transport.enabledProtocols=TLSv1.1,TLSv1.2&transport.enabledCipherSuites=TLS_RSA_WITH_3DES_EDE_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_256_CBC_SHA,TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA,TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA&needClientAuth=true&maximumConnections=1000&wireFormat.maxFrameSize=104857600" />
Is there some syntax I can use to break this up into separate lines to make it more readable? Or can I configure the transport in another format, like a bean?