使用IntelliJ

时间:2017-08-04 21:38:41

标签: maven tomcat spring-boot intellij-idea

我有一个基于spring-boot的应用程序,使用嵌入式tomcat。通过mvn spring-boot:run目标进行部署时没有问题,当我尝试使用intelliJ spring-boot插件进行部署时,我遇到了问题。重要提示,我们已经修改了默认的pom,将我们的应用程序转换为可以部署到完整tomcat Traditional Deployment的战争,但是在开发模式下,使用嵌入式tomcat部署应用程序会更好。问题是,当我们尝试从intelliJ

运行spring boot应用程序时,我们基本上都会收到此消息
Caused by: java.lang.IllegalStateException: Failed to introspect annotated methods on class org.springframework.boot.web.support.SpringBootServletInitializer
    at org.springframework.core.type.StandardAnnotationMetadata.getAnnotatedMethods(StandardAnnotationMetadata.java:163) ~[spring-core-4.3.8.RELEASE.jar:4.3.8.RELEASE]
    at org.springframework.context.annotation.ConfigurationClassParser.retrieveBeanMethodMetadata(ConfigurationClassParser.java:380) ~[spring-context-4.3.8.RELEASE.jar:4.3.8.RELEASE]
    at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:314) ~[spring-context-4.3.8.RELEASE.jar:4.3.8.RELEASE]
    at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:245) ~[spring-context-4.3.8.RELEASE.jar:4.3.8.RELEASE]
    at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:198) ~[spring-context-4.3.8.RELEASE.jar:4.3.8.RELEASE]
    at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:167) ~[spring-context-4.3.8.RELEASE.jar:4.3.8.RELEASE]
    ... 17 common frames omitted
Caused by: java.lang.NoClassDefFoundError: javax/servlet/ServletContext
    at java.lang.Class.getDeclaredMethods0(Native Method) ~[na:1.8.0_144]
    at java.lang.Class.privateGetDeclaredMethods(Class.java:2701) ~[na:1.8.0_144]
    at java.lang.Class.getDeclaredMethods(Class.java:1975) ~[na:1.8.0_144]
    at org.springframework.core.type.StandardAnnotationMetadata.getAnnotatedMethods(StandardAnnotationMetadata.java:152) ~[spring-core-4.3.8.RELEASE.jar:4.3.8.RELEASE]
    ... 22 common frames omitted
Caused by: java.lang.ClassNotFoundException: javax.servlet.ServletContext
    at java.net.URLClassLoader.findClass(URLClassLoader.java:381) ~[na:1.8.0_144]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424) ~[na:1.8.0_144]
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335) ~[na:1.8.0_144]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ~[na:1.8.0_144]
    ... 26 common frames omitted

你有什么想法,为什么会这样?我们该如何解决呢?

修改

我正在使用IntelliJ IDEA 2017.2 (以防构建是想法 - IU-172.3317.76),作为SSCCE,让我们使用getting-started example of spring-boot,然后让我们应用为传统部署(第一个链接)建议的更改我们将有以下文件

的pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<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>org.springframework</groupId>
    <artifactId>gs-spring-boot</artifactId>
    <version>0.1.0</version>
    <packaging>war</packaging>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.6.RELEASE</version>
    </parent>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-tomcat</artifactId>
            <scope>provided</scope>
        </dependency>
    </dependencies>

    <properties>
        <java.version>1.8</java.version>
    </properties>


    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

然后我们将拥有 Application.java

package hello;

import java.util.Arrays;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.support.SpringBootServletInitializer;
import org.springframework.context.ApplicationContext;

@SpringBootApplication
public class Application extends SpringBootServletInitializer {

    public static void main(String[] args) {
        ApplicationContext ctx = SpringApplication.run(Application.class, args);

        System.out.println("Let's inspect the beans provided by Spring Boot:");

        String[] beanNames = ctx.getBeanDefinitionNames();
        Arrays.sort(beanNames);
        for (String beanName : beanNames) {
            System.out.println(beanName);
        }
    }

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

}

我没有修改 HelloController.java ,只是为了完整性:

package hello;

import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.RequestMapping;

@RestController
public class HelloController {

    @RequestMapping("/")
    public String index() {
        return "Greetings from Spring Boot!";
    }

}

此示例使用mvn spring-boot:run运行时没有问题,但在使用spring-boot intelliJ插件时无法运行

2 个答案:

答案 0 :(得分:3)

注意 - 这个答案引用了v 1.5.6.RELEASE(当前版本)的Spring文档

<强>分析:

从IJ运行主类就像从命令行执行您的应用程序。因此,类路径将仅包含compileruntime范围的依赖项。 Provided表示在编译期间需要它,但是您希望JDK或容器在运行时为您的应用程序提供

  

provided   这与compile非常相似,但表示您希望JDK或容器在运行时提供依赖性。例如,在为Java Enterprise Edition构建Web应用程序时,您可以将Servlet API和相关Java EE API的依赖关系设置为范围provided,因为Web容器提供了这些类。此范围仅在编译和测试类路径中可用,并且不可传递。

另一方面,spring-boot-maven-plugin使用不同的类路径来执行run目标:

  

默认情况下,repackagerun目标都包含项目中定义的任何provided依赖项。基于引导的项目应将provided依赖项视为运行应用程序所需的容器依赖项。

结论和解决方案:

所以这是一个类路径配置问题。如您所述,对于war packagingtraditional deployment,您应该排除嵌入式servlet容器。但是,为了能够在开发期间运行应用程序,您需要嵌入式容器。

作为解决方案或解决方法,您至少有以下两个选项:

1)<scope>provided</scope>依赖关系声明中删除spring-boot-starter-tomcat。如果您愿意,可以完全删除该依赖项,如Tomcat is the default container used by spring-boot-starter-web,但也许最好留下它并添加注释,因此在发布时不会忘记它

2)与IJ一起工作的一个巧妙的技巧,可以让你更容易忘记在生产发布之前取消注释provided,就是保留现在的依赖关系,并添加您可以从IJ激活的maven dev个人资料。这样,默认情况下它将是provided并且可以安全地打包成战争,并且只有在开发和手动激活配置文件时才会包含它。添加配置文件后,重新导入您的maven项目,以便您可以选择配置文件:

<profiles>
    <profile>
        <id>dev</id>
        <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-tomcat</artifactId>
            </dependency>
        </dependencies>
    </profile>
</profiles>

reimport project and activate profile

答案 1 :(得分:0)

如果您正在使用maven项目,那么您需要添加javax.servlet-api依赖项。

<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>javax.servlet-api</artifactId>
    <version>2.5</version>
    <scope>provided</scope>
</dependency>

你也可以从http://central.maven.org/maven2/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar

下载jar