如何在spring boot中部署webapp环境呢

如何在spring boot中部署webapp环境呢
首先是引入web依赖
其次是与java同级新建一个webapp目录
然后在project-struct中+一个web将目录变量配置好
如何在spring boot中部署webapp环境呢_第1张图片

然后在pom依赖中加入一下代码
在build下

<resources>
   <resource>
        <directory>src/main/webappdirectory>
        <targetPath>META-INF/resourcestargetPath>
        <includes>
            <include>**/**include>
        includes>
    resource>
resources>

你可能感兴趣的:(后端,笔记,spring,boot,web,app,java)