Spring-boot创建项目后,pom.xml出现web.xml is missing and is set to true解决方案

这个问题的原因是maven看到我们项目的类型是war,在pom.xml中有这段代码

war  

因为创建的是web工程,从提示信息可以看到。也就是缺少了web.xml文件被设置成true了。这是一个Maven错误,在最近的web应用开发中web.xml文件已经变得可有可无了。不过Maven还没有跟上这一变化,我们只要在pom.xml文件中手动添加如下配置:


    
        
            org.apache.maven.plugins
            maven-war-plugin
            2.6
            
                false
            
        
    

这样做的好处是我们不必在项目生中成一个无用的web.xml文件。在更新版本的maven中已经不存在web.xml文件缺失的问题,我们只需要处理被设置成tue的问题即可。也就是在pom.xml中添加如下配置即可。



      false
 

另外一种解决方法:就是生成web.xml文件,

Spring-boot创建项目后,pom.xml出现web.xml is missing and is set to true解决方案_第1张图片

在项目浏览器中右键单击Deloyment Descriptor,选择生成部署描述符存根:Generate  Deployment Descriptor Stub。

操作后会在项目的src/main/webapp/WEB-INF目录下生成web.xml文件。

Spring-boot创建项目后,pom.xml出现web.xml is missing and is set to true解决方案_第2张图片

如果加入web.xml文件后还是提示报错,请接着使用下面的方法:

 第一步:右击项目-Properties->Deployment Assembly>add->Folder->src->main->webapp

第二步:在eclipse顶部菜单,打开project->clean:

   Spring-boot创建项目后,pom.xml出现web.xml is missing and is set to true解决方案_第3张图片

经过以上步骤,问题解决。

你可能感兴趣的:(Spring-Boot)