Spring boot沒有了web.xml配置文件,那首頁該如何設置那?
首頁文件需要放到static目錄下,具體項目結構如下圖所示:
添加配置類,其代碼如下:
import org.springframework.context.annotation.Configuration; import org.springframework.core.Ordered; import org.springframework.web.servlet.config.annotation.ViewControllerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Configuration public class IndexViewConfig implements WebMvcConfigurer { @Override public void addViewControllers(ViewControllerRegistry registry) { registry.addViewController("/").setViewName("forward:/index.html"); registry.setOrder(Ordered.HIGHEST_PRECEDENCE); } }
此時通過IP+端口號,就可以訪問默認首頁了。