I have been looking for a way to expose the property 'allowLinking' to allow an TomcatEmbeddedServletContainerFactory to follow symlinks to resources that are under its documentRoot.
According to the Tomcat 8 Migration docs this functionality switched to the 'Resources' tag for Tomcat 8+ : Tomcat 8 Migration Guide
<!-- Tomcat 7: -->
<Context allowLinking="true" />
<!-- Tomcat 8: -->
<Context>
<Resources allowLinking="true" />
</Context>
How would one expose this property while configuring the TomcatEmbeddedServletContainerFactory programmatically for a Spring Boot application?