我一直在尋找一種方法來公開'allowLinking'屬性,以允許TomcatEmbeddedServletContainerFactory遵循符號鏈接到其documentRoot下的資源。Spring Boot嵌入式Tomcat'allowLinking'屬性
據Tomcat的8遷移文檔此功能切換到「資源」標籤爲Tomcat 8+:Tomcat 8 Migration Guide
<!-- Tomcat 7: -->
<Context allowLinking="true" />
<!-- Tomcat 8: -->
<Context>
<Resources allowLinking="true" />
</Context>
而編程配置TomcatEmbeddedServletContainerFactory的春天啓動應用程序如何將一個揭露這個屬性?