java spring 默认页面_SpringBoot设置默认主页的方法步骤

1.若采用渲染引擎,JSP等VIEW渲染技术,可以通过addViewController的方式解决。

即:

@Configuration

public class DefaultView extends WebMvcConfigurerAdapter {

@Override

public void addViewControllers(ViewControllerRegistry registry) {

registry.addViewController("/Blog").setViewName("forward:index.jsp");

registry.setOrder(Ordered.HIGHEST_PRECEDENCE);

super.addViewControllers(registry);

}

}

或者

@Controller

@RequestMapping("/")

public class IndexController {

@RequestMapping("/Blog")

public String index() {

return "forward:index.html";

}

}

2.若完全采用前后端分离的模式,即前端所有资源都放在addresourceHandler配置的路径下

@Override

protected void addResourceHandlers(ResourceHandlerRegistry registry) {

registry.addResourceHandler("/temples/**")

.addResourceLocations("classpath:/temples/");

super.addResourceHandlers(registry);

}

此时不能通过配置addViewController的方式解决,会抛出异常

javax.servlet.ServletException: Could not resolve view with name 'forward:/temples/index.html' in servlet with name 'dispatcherServlet'

只能通过response.redirect(“temples/index.html”)的方式重指向默认主页,

注:我在WebMvcConfigurationSupport类中并未找到相关方法。也无其他解决方案。

@Controller

@RequestMapping("/")

public class IndexController {

@RequestMapping("/")

public void index(HttpServletResponse response) throws IOException {

response.sendRedirect("/temples/index.html");

}

}

3最后 最好通过nginx配置 不要在后台项目代码里添加前端的文件。

到此这篇关于SpringBoot设置默认主页的方法步骤的文章就介绍到这了,更多相关SpringBoot设置默认主页内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值