我上过这门课:
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.SpringApplication;
@SpringBootApplication
public class BootApplication {
}
在启动应用程序时,我得到错误:
Spring Boot Application in the default package
你知道我为什么会出现上面的错误吗?
2条答案
按热度按时间9gm1akwq1#
你把这门课打包了吗?
如果没有,请创建一个包,并将类保留在其中。
另外,在里面放一个main方法。
ryevplcw2#
在一个包中声明您的spring启动应用程序,通常不鼓励使用默认包,应该避免使用。
对于使用@componentscan或@springbootapplication注解的spring引导应用程序,它可能会导致特定的问题。