3

Spring Documentationのモデルに従って、非常に単純な Hello World のようなアプリケーションを作成しました。それは Eclipse 上でスピンアップし、すべてが素晴らしく見えました。甘い!実行したところ、URL を参照できました。これまでで最速の開発。

しかし、これはサーバー上で実行する必要があり、jar を見ると、約 4K しかないので、大量のクラスパス構成がないと機能しないことがわかっていました。それを避けるために、jar-with-dependencies jar が必要だと考えました。

これが私の pom.xml で、アセンブリ プラグインの jar-with-dependencies ゴールを追加することを除いて、Spring の例と基本的に同じです。

<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>com.whatever</groupId>
    <artifactId>LoadTestController</artifactId>
    <version>1.0.0</version>
    <name>LoadTestController</name>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.3.0.RELEASE</version>
    </parent>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.5.1</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                    <compilerArgument>-Xlint:all</compilerArgument>
                    <showWarnings>true</showWarnings>
                    <showDeprecation>true</showDeprecation>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.5.3</version>
                <configuration>
                    <archive>
                        <manifest>
                            <mainClass>com.whatever.LoadTestController</mainClass>
                            <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
                        </manifest>
                    </archive>
                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                </configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

しかし、私が物事を実行するとき:

java -jar LoadTestController-1.0.0-jar-with-dependencies.jar

私は得る:

org.springframework.context.ApplicationContextException: 組み込みコンテナーを開始できません。ネストされた例外は org.springframework.context.ApplicationContextException: Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContainerFactory Bean です。

違いはないと思いますが、このプロジェクトの唯一のクラスは次のとおりです。

package com.whatever;

import java.io.IOException;

import javax.servlet.http.HttpServletResponse;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
@EnableAutoConfiguration
public class LoadTestController {

    @RequestMapping("/")
    public void simulator(HttpServletResponse response) {
        try {
            Thread.sleep(100);
        } catch (InterruptedException e1) {

        }
        response.setContentType("text/plain");
        response.setStatus(HttpServletResponse.SC_OK);
        try {
            response.getOutputStream().println("0");
            response.flushBuffer();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    /**
     * @param args
     */
    public static void main(String[] args) {
        SpringApplication.run(LoadTestController.class, args);  
    }

私は何を間違えましたか?

4

1 に答える 1