如何用springMVC 返回一个指定的HTML页面

 我来答
千锋教育
2016-01-19 · 做真实的自己 用良心做教育
千锋教育
千锋教育专注HTML5大前端、JavaEE、Python、人工智能、UI&UE、云计算、全栈软件测试、大数据、物联网+嵌入式、Unity游戏开发、网络安全、互联网营销、Go语言等培训教育。
向TA提问
展开全部
springMVC指定返回的html页面的方法如下:
在controller中:
@Controller
@RequestMapping("/index.html")
public class MyIndexController {
@RequestMapping(method=RequestMethod.GET)
protected String gotoIndex(Model model) throws Exception {
return "myLandingPage";
}
}
在web.xml中配置如下:
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
富士达free
2016-01-05 · TA获得超过206个赞
知道小有建树答主
回答量:174
采纳率:0%
帮助的人:32.7万
展开全部
在的controller中,对其modelandview进行相关设置
ModelAndView view = new ModelAndView();
view.setViewName("studio/ePolicy/epolicystep1");
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式