我正在尝试一个纯Java(没有web.xml)Spring WebMVC项目,我遇到了配置文件的一个特殊问题。我正在使用来自this example的代码,其中的内容是“100%基于代码的配置方法”。但是,eclipse说我必须删除@Override注释,因为onStartup没有“实现超类方法”。
这似乎可能是我使用的Servlet或Spring版本的问题,但我真的不知道我可能会改变它们中的任何一个来解决这个问题。
这是一个Maven项目。我想通过调整我的maven依赖关系来解决这个问题,而不是使用Eclipse配置。
这是配置文件
package com.peak15.jumpgate;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.ServletRegistration;
import org.springframework.web.WebApplicationInitializer;
import org.springframework.web.context.ContextLoaderListener;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.AnnotationConfigWebApplicationContext;
import org.springframework.web.servlet.DispatcherServlet;
public class MyWebAppInitializer implements WebApplicationInitializer {
@Override // TODO figure out why this doesn't override
public void onStartup(ServletContext servletContext) throws ServletException {
WebApplicationContext context = getContext();
servletContext.addListener(new ContextLoaderListener(context));
ServletRegistration.Dynamic dispatcher = servletContext.addServlet("DispatcherServlet", new DispatcherServlet(context));
dispatcher.setLoadOnStartup(1);
dispatcher.addMapping("/*");
}
private AnnotationConfigWebApplicationContext getContext() {
AnnotationConfigWebApplicationContext context
= new AnnotationConfigWebApplicationContext();
context.setConfigLocation("com.peak15.jumpgate");
return context;
}
}
这是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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>jumpgate</groupId>
<artifactId>jumpgate2</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<name>JumpGateII</name>
<properties>
<jdk.version>1.8</jdk.version>
<spring.version>3.2.13.RELEASE</spring.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
</dependency>
</dependencies>
</project>
答案 0 :(得分:1)
检查您是否安装了jdk 1.8 - &gt;如果没有,Eclipse默认为Java 1.5,并且您有实现接口方法的类(在Java 1.6中可以使用@Override进行注释,但在Java 1.5中只能应用于覆盖超类方法的方法)。
您还可以将Maven编译器插件添加到您的pom中,以确保它使用最新的Java版本:
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
希望这会导致问题。