1. 程式人生 > >springboot 自定義webroot的目錄

springboot 自定義webroot的目錄

@Bean
public  EmbeddedServletContainerCustomizer documentDirectoryCustomizer () {
    return new EmbeddedServletContainerCustomizer() {

        public void customize(ConfigurableEmbeddedServletContainer container) {
            LOGGER.info("當前JSP載入目錄為:" + jspPath);
            File jspDirFile = new File(jspPath);
            if(!jspDirFile.exists())
            {
                LOGGER.error("JSP目錄不存在:" + jspPath);
                System.exit(0);
            }
            container.setDocumentRoot(jspDirFile);
        }
    };
}