3

我正在尝试使用 spring-boot (1.2.4.RELEASE) 将 Web 服务服务器作为独立应用程序运行。我已经参考了春季网站提供的教程。

但是在我的应用程序中,我无法在 Spring Boot 的任何 API 中找到 org.springframework.boot.SpringApplication 类。

下面是我为此使用的 pom.xml 文件:

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.2.4.RELEASE</version>
</parent>
<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
</dependencies>

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

任何人都可以帮助我找出这可能是什么问题。

4

1 回答 1

2

我得到了这个工作。使用mvn clean install后,它已开始工作。

最初它没有在项目依赖项中显示 spring-boot-1.2.5.RELEASE.jar(SpringApplication 类所属的)。运行上面的命令后,这个依赖被添加了,现在它工作正常了。

于 2015-07-02T10:33:08.600 回答