Spring Boot Whitelabel Error page (type=Not Found, status=404)

前端 未结 5 2173
离开以前
离开以前 2021-02-19 10:31

Good afternoon! I\'m starting spring studies, I\'m following a tutorial the same way, but it returns an error:

Folder structure:

The strange th

5条回答
  •  我寻月下人不归
    2021-02-19 10:43

    As answered by Deepak, main class should be in a root package above other packages. But if you don't want to do this, you can use:

    @SpringBootApplication(scanBasePackages = {"com.other.packages","com.other"})
    public class SpringAppApplication {
    .....
    }
    

提交回复
热议问题