我用eclipse进行pom.xml文件配置会出现以下错误
为什么会出现这两个JAR包 missing 我该怎么解决,另外index.jsp中的错误该如何解决,谢谢。。。
为什么会出现这两个JAR包 missing 我该怎么解决,另外index.jsp中的错误该如何解决,谢谢。。。
2016-09-29
1.<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.1</version>
</dependency>
2.重新手动在输入一次 或 pom.xml上run as---maven install
3.pom.xml开头是不是 3.0版本以上
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
举报