2014-02-08 55 views
0

我創建Maven項目 「文件 - >新建 - >其他..-> Maven-> Maven項目」
我創建控制器+視圖, 「Hello World」 的,一切運作良好。
我愚蠢決定點擊右擊(項目) - > Maven->更新項目(Tomcat的運行狀態)。
關於該項目出現「紅色感嘆號」和「HelloWorld」不起作用。後Spring MVC。 HTTP狀態500 - 錯誤的servlet實例

enter image description here

屏幕 「我的更新」

enter image description here

enter image description here

enter image description here

enter image description here

的pom.xml

<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/maven-v4_0_0.xsd"> 
    <modelVersion>4.0.0</modelVersion> 
    <groupId>com.mdosoft</groupId> 
    <artifactId>Primer</artifactId> 
    <packaging>war</packaging> 
    <version>0.0.1-SNAPSHOT</version> 
    <name>Primer Maven Webapp</name> 
    <url>http://maven.apache.org</url> 
    <dependencies> 
    <dependency> 
     <groupId>junit</groupId> 
     <artifactId>junit</artifactId> 
     <version>3.8.1</version> 
     <scope>test</scope> 
    </dependency> 
    <dependency> 
     <groupId>org.springframework</groupId> 
     <artifactId>spring-webmvc</artifactId> 
     <version>3.2.6.RELEASE</version> 
    </dependency> 
    <dependency> 
     <groupId>javax.servlet</groupId> 
     <artifactId>javax.servlet-api</artifactId> 
     <version>3.0.1</version> 
     <scope>provided</scope> 
    </dependency> 
    <dependency> 
     <groupId>javax.servlet</groupId> 
     <artifactId>jstl</artifactId> 
     <version>1.2</version> 
     <scope>provided</scope> 
    </dependency> 
    </dependencies> 
    <build> 
    <finalName>Primer</finalName> 
    </build> 
</project> 
+0

不乾淨的安裝。 –

+1

確保Spring Jar實際存在於您的Tomcat應用程序的WEB-INF中。 – arahant

+0

全新安裝 - 沒有變化( – DmitMedv

回答

1

運行MVN清潔套裝確保所有罐子LIB內夾。如果它不工作變化的servlet API版本2.5

0

你能提供pom.xml文件, 檢查servlet api-3.0.1 depaendency範圍內,它必須是provided

+0

我添加的pom.xml – DmitMedv

+1

確保所有'jar'文件可用,否則包括所有的依賴。 –

相關問題