1.目录结构
image.png
2.说明
在springboot-web中
可以通过http://localhost:8080/
直接访问/src/main/resources/static/index.html
不需要任何配置
也就是说当前后端分离开发,需要合并部署时
直接把前端编译好的静态文件放到这个目录下,再打包后端即可
3. 代码
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>前后端分离开发,合并部署</title>
</head>
<body>
<h1>
在springboot-web中<br>
可以通过http://localhost:8080/<br>
直接访问/src/main/resources/static/index.html<br>
不需要任何配置<br>
也就是说当前后端分离开发,需要合并部署时<br>
直接把前端编译好的静态文件放到这个目录下,再打包后端即可<br>
</h1>
</body>
</html>
4. 运行
image.png
5.源码
https://gitee.com/gao_zhenzhong/springboot-vue
网友评论