我正在使用STS学习Spring Boot并遵循Udemy的教程。尝试将应用程序作为Java应用程序运行时,我收到以下错误。我看过其他类似的帖子,似乎没有什么新东西。大多数问题都是在3 - 5年前。我试图在我的pom中添加一些依赖项,但它给了我比我开始时更多的错误,所以我删除它们。
错误是: 无法加载类" org.slf4j.impl.StaticLoggerBinder"
这是我的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>com.in28minutes.springboot</groupId>
<artifactId>first-springboot-project</artifactId>
<version>0.0.1-SNAPSHOT</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.0.RELEASE</version>
</parent>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<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>
</project>
以下是我试图运行的内容:
package com.in28minutes.springboot;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ApplicationContext;
@SpringBootApplication
public class Application {
public static void main(String[] args) {
ApplicationContext ctx = SpringApplication.run(Application.class,
args);
}
}
有没有人建议我能做些什么来解决这个问题?我绑定吗?原始示例代码可以在教师的回购中找到:https://github.com/in28minutes/SpringBootForBeginners/blob/master/Step01.md
答案 0 :(得分:0)
我没有使用STS,但是从docs开始,您应该将应用程序作为 Spring Boot App 运行,因为您正在使用Spring Boot。
但是你的错误似乎是因为依赖错误,如果你熟悉命令行我建议你在运行Spring项目之前执行mvn clean install
以确保下载所有依赖项。
另一个提示是,如果您对命令行有好处,请尝试在项目目录中执行mvn spring-boot:run
,它将执行您的Spring项目。