美文网首页
前后端分离开发,合并部署

前后端分离开发,合并部署

作者: 不知不怪 | 来源:发表于2020-12-21 00:10 被阅读0次

    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

    相关文章

      网友评论

          本文标题:前后端分离开发,合并部署

          本文链接:https://www.haomeiwen.com/subject/iwmlnktx.html