springboot跳轉(zhuǎn)靜態(tài)頁(yè)面 springboot如何設(shè)置默認(rèn)的首頁(yè)?
springboot如何設(shè)置默認(rèn)的首頁(yè)?1.spring boot中可以設(shè)置默認(rèn)首頁(yè),當(dāng)輸入域名是可以自動(dòng)跳轉(zhuǎn)到默認(rèn)指定的網(wǎng)頁(yè)@Configurationpublic class DefaultVie
springboot如何設(shè)置默認(rèn)的首頁(yè)?
1.spring boot中可以設(shè)置默認(rèn)首頁(yè),當(dāng)輸入域名是可以自動(dòng)跳轉(zhuǎn)到默認(rèn)指定的網(wǎng)頁(yè)@Configurationpublic class DefaultView extends WebMvcConfigurerAdapter{@Overridepublic void addViewControllers(ViewControllerRegistry registry) {registry.addViewController("/").setViewName("forward:/index")registry.setOrder(Ordered.HIGHEST_PRECEDENCE)super.addViewControllers(registry)} }