前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >SpringBoot当中如何整合静态html(模拟SpringMVC)

SpringBoot当中如何整合静态html(模拟SpringMVC)

作者头像
马克java社区
修改2019-07-26 10:19:20
1.2K0
修改2019-07-26 10:19:20
举报
文章被收录于专栏:java大数据java大数据

整合静态html(模拟SpringMVC): 1)在上一个项目中,在src/main目录下,添加resources/static/index.html:(参考目录下:BootSpringMVC)注意:在resources根目录下添加test.html,是访问不到的。在src/main目录下,添加resources/templates/result.html,也是访问不到的。 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> </head> <body> index1 <a href="/hello.do">test SpringMvc</a> </body> </html> package com.SpringbootMaven; import java.io.IOException; import javax.servlet.http.HttpServletResponse; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping;

更多请看下节:https://blog.csdn.net/qq_44639795/article/details/94177548

本文系转载,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文系转载前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档