SpringBoot设置默认主页的方法步骤
1.若采用渲染引擎,JSP等VIEW渲染技术,可以通过addViewController的方式解决。
即:
@Configuration publicclassDefaultViewextendsWebMvcConfigurerAdapter{ @Override publicvoidaddViewControllers(ViewControllerRegistryregistry){ registry.addViewController("/Blog").setViewName("forward:index.jsp"); registry.setOrder(Ordered.HIGHEST_PRECEDENCE); super.addViewControllers(registry); } }
或者
@Controller @RequestMapping("/") publicclassIndexController{ @RequestMapping("/Blog") publicStringindex(){ return"forward:index.html"; } }
2.若完全采用前后端分离的模式,即前端所有资源都放在addresourceHandler配置的路径下
即
@Override protectedvoidaddResourceHandlers(ResourceHandlerRegistryregistry){ registry.addResourceHandler("/temples/**") .addResourceLocations("classpath:/temples/"); super.addResourceHandlers(registry); }
此时不能通过配置addViewController的方式解决,会抛出异常
即
javax.servlet.ServletException:Couldnotresolveviewwithname'forward:/temples/index.html'inservletwithname'dispatcherServlet'
只能通过response.redirect(“temples/index.html”)的方式重指向默认主页,
注:我在WebMvcConfigurationSupport类中并未找到相关方法。也无其他解决方案。
即
@Controller @RequestMapping("/") publicclassIndexController{ @RequestMapping("/") publicvoidindex(HttpServletResponseresponse)throwsIOException{ response.sendRedirect("/temples/index.html"); } }
3最后最好通过nginx配置不要在后台项目代码里添加前端的文件。
到此这篇关于SpringBoot设置默认主页的方法步骤的文章就介绍到这了,更多相关SpringBoot设置默认主页内容请搜索毛票票以前的文章或继续浏览下面的相关文章希望大家以后多多支持毛票票!