First, you use illegal characters inside your XML node param-value
You are not allowed to use "/", "<", and other characters inside the node, since it will break the parsing of the XML document.
You should use CDATA or PCDATA covers around your value inside the XML node.
eg.
<param-value><![CDATA[ WEB-INF/applicationContext.xml WEB-INF/applicationContext-security.xml]]> </param-value>
That was the cause of your problem.
source share