I have a Spring Boot web application and would like to show static content located in the Dropbox shared directory on my Linode VPS (~ / Dropbox / images). I read that Spring Boot will automatically load static content from
"classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/",
but of course my Dropbox directory is not in the classpath.
Although I could configure Apache to work with images in my Dropbox folder, I would like to take advantage of Spring Security to restrict access to static content to authenticated users.
spring-boot spring-mvc apache dropbox static-content
Shannon Kendrick Jan 14 '14 at 20:33 2014-01-14 20:33
source share