eclipse - 带有 Spring Boot 的 Spring MVC 不适用于 Eclipse 的 Tomcat 服务器

标签 eclipse tomcat spring-mvc gradle spring-boot

我尝试遵循 Spring 入门指南“使用 Spring MVC 提供 Web 内容”,除了 Maven 之外,它还使用 Spring Boot 和 Gradle。 我将 Gradle 插件安装到 Eclipse。

我想在 Eclipse 中使用 Tomcat 服务器运行该应用程序,因为我还遵循了“将 Spring Boot JAR 应用程序转换为 WAR”指南并更改了指南中提到的“build.gradle”文件。基本上,我添加了行“apply plugin: 'eclipse-wtp'”、“apply plugin: 'war'”、配置 {providedRuntime} 和 providedRuntime("org.springframework.boot:spring-boot-starter-tomcat");并将 jar 设置更改为 war 设置。这是 build.gradle 文件:

buildscript {
repositories {
    maven { url "http://repo.spring.io/libs-milestone" }
    mavenLocal()
}
dependencies {
    classpath("org.springframework.boot:spring-boot-gradle-plugin:1.0.2.RELEASE")
}
}

apply plugin: 'java'
apply plugin: 'eclipse-wtp'
apply plugin: 'idea'
apply plugin: 'spring-boot'
apply plugin: 'war'

eclipse.project {
  natures 'org.springsource.ide.eclipse.gradle.core.nature'
}

war {
    baseName = 'gs-serving-web-content'
    version =  '0.1.0'
}

repositories {
    mavenCentral()
    maven { url "http://repo.spring.io/libs-milestone" }
}

configurations {
    providedRuntime
}

dependencies {
    compile("org.springframework.boot:spring-boot-starter-thymeleaf")
    testCompile("junit:junit")
    providedRuntime("org.springframework.boot:spring-boot-starter-tomcat")
}

task wrapper(type: Wrapper) {
    gradleVersion = '1.11'
}

我还添加了他们提到的 HelloWebXml 类。这是类(class):

package hello;

import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.context.web.SpringBootServletInitializer;

public class HelloWebXml extends SpringBootServletInitializer {
    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        return application.sources(Application.class);
    }
}

除此之外,我还需要稍微更改 pom.xml,因为它提示 Java SE 7 的功能。将以下行添加到 pom.xml:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
            <source>1.7</source>
            <target>1.7</target>
            <showWarnings>true</showWarnings>
            <compilerVersion>1.7</compilerVersion>
            <fork>true</fork>
        </configuration>
</plugin>

其余与入门指南相同。

为了 build ,我跑

gradlew eclipseWtp
gradlew clean build

命令。在此之后,war 文件将在项目的 build/libs 文件夹中创建。如果我将 war 文件复制到本地 Tomcat 服务器并启动服务器,一切都会按预期进行。

如果我将项目拖到“服务器”选项卡下的 Tomcat 服务器(使用相同的本地 Tomcat 创建)并运行该服务器,则会抛出 ClassCastException 并出现以下错误: “无法将 org.springframework.web.SpringServletContainerInitializer 转换为 javax.servlet.ServletContainerInitializer”。

我检查了两个部署位置的项目文件夹结构。 在本地(非 Eclipse)部署位置,服务器启动后,将按预期创建一个名为 war 文件的文件夹。在WEB-INF文件夹中,有一个lib-provided目录。我查看了Eclipse的Tomcat的部署位置,没有包含名为lib-provided的目录。我想问题出在没有创建这个目录,但我找不到解决方案。

我已经在使用 Spring MVC,而且我知道如何使用 web.xml 创建 MVC 项目,但我是 Spring Boot 的新手。 Eclipse 的 Tomcat 服务器可以很好地运行我以前的 Spring MVC 项目。所以问题出在Spring Boot项目上。

我检查了几个相关问题,但它们与我的不一样。我找不到解决问题的方法。

我在这里错过了什么?

提前致谢。

最佳答案

我想您正在与 servlet-api JAR 发生冲突。如果您使用嵌入式 Tomcat 进行开发(创建 JAR),则需要在 compile 范围内的类路径中包含 servlet-api JAR。当您部署到现有的 Tomcat 安装(创建 WAR)时,您必须在 provided 范围内声明 servlet-api jar,否则它将在 web 中结束-inf/lib 并导致与容器提供的版本冲突。

这是示例 Spring Boot WAR 项目的 POM: https://github.com/spring-projects/spring-boot/blob/master/spring-boot-samples/spring-boot-sample-traditional/pom.xml

请注意 spring-boot-starter-tomcat 如何使用 provided 作用域。

关于eclipse - 带有 Spring Boot 的 Spring MVC 不适用于 Eclipse 的 Tomcat 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23484257/

相关文章:

java - 无法找到javac

apache - 在 ubuntu 上构建 mod_jk 时出现 "You must specify a valid --with-apxs path"

spring - 使用 @RequestMapping 匹配 URL 模式

spring-mvc - 如何对Orient DB数据库进行分片和复制

java - Android项目->MainAcitvity.java - R是一个 undefined variable

java - 如何禁用 GUI 树查看器中展开箭头的悬停显示?我希望它们始终可见

eclipse - 如何将控制台固定到主窗口

java - 在 eclipse kepler 中安装 Apache Tomcat 8.0.9 时遇到问题

spring - WebApplicationInitializer 被重复调用

java - Spring MVC : Sharing context within ear