打开eclipse准备进行开发时,发现项目上有个红星号,查看错误后发现报了一个:"web.xml is missing and <failOnMissingWebXml> is set to true"的错误,虽然不影响项目的正常运行,但是对于像我这种有强迫症的人来说,总是感觉很不爽,最后查了半天也没有很好的解决办法.后来使用最暴力的方式解决了该问题. 问题: 暴力解决办法: 1.在eclipse里删除出错的项目 (1) (2) 2.重新导入该maven工程 (1) (2)…
.personSunflowerP { background: rgba(51, 153, 0, 0.66); border-bottom: 1px solid rgba(0, 102, 0, 1); border-top-left-radius: 7px; border-top-right-radius: 7px; color: rgba(255, 255, 255, 1); height: 1.8em; line-height: 1.8em; padding: 5px } 问题描述:有时候新…
今天创建一个maven项目 pom.xml出现如下错误: web.xml is missing and <failOnMissingWebXml> is set to true 这是因为你因为你WEB-INF下没有web.xml导致造成的 解决方案: 右击项目-->Java EE Tools-->Generate Deployment Descriptor Stub.然后系统会在src/main/webapp/WEB_INF文件加下创建web.xml文件.错误解决! 当然这个方法是…
背景:java读取xml文件,xml文件内容只有“<?xml version="1.0" encoding="UTF-8"?>”一行 java读取该xml文件时,报“org.xml.sax.SAXParseException: Premature end of file”错误. java解析xml文件时抛出异常: org.xml.sax.SAXParseException: Premature end of file.at com.sun.org.apa…
对web项目的解决方案: 右击项目——>Java EE Tools——>Generate Deployment Descriptor Stub. 然后系统会在src/main/webapp/WEB_INF文件加下创建web.xml文件,这样错误就解决了. 对于不是web项目: 解决方案就是在pom文件中配置一下failOnMissingWebXml.具体配置如下: <build> <plugins> <plugin> <groupId>org.a…
1. 右键点击Deployment Descriptor 2. 选择Generate Deployment Descriptor Stub P.S.下面顺便提一个小技巧: 创建动态web时先右键项目,properties,选project facets 先取消动态web 的选择,ok之后再右键项目,再选择动态web,这样可以选择出现web content文件夹…
[错误一:]maven 编译级别过低 [解决办法:] 使用 maven-compiler-plugin 将 maven 编译级别改为 jdk1.6 以上: <!-- java编译插件 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2<…
解决:eclipse导入android时工程下没有R文件的问题,以及style.xml文件报错…
在今天的学习Maven项目中遇到的这个错误:pom.xml文件报xxx\target\classes\META-INF\MANIFEST.MF (系统找不到指定的路径) 在Maven项目学习中,缓存问题时刻存在 我的解决办法为:选择工程右击--Maven--Update Project 网上也有其他的一些办法:大致三类 1.找到eclipse的project菜单选择clean...选项 2.选中pom.xml右击--Maven clean 3.eclipse工具栏Project--clean 总…
因为maven下载依赖jar包时,特别慢,所以取消了下载过程,再次打开eclipse时,maven的pom.xml文件报错如下: ArtifactTransferException: Failure to transfer xom:xom:jar:1.2.5 from http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until th…