Hi,

I have the following folders in my web application.
/css
/js
/META-INF
/static
/WEB-INF

Under the static folder I have some xml files that contains some data that needs to be loaded inside the application.

Fetching the ApplicationContext allows me to access all files under /js, /css however I cannot access those under /static.

How do I properly configure Spring so these xml files are accessible from the application?

Thank you.