Spring Boot Controller not mapping

前端 未结 9 1479
慢半拍i
慢半拍i 2021-02-05 02:55

I have used STS and now I am using IntelliJ Ultimate Edition but I am still getting the same output. My controller is not getting mapped thus showing 404 error. I am completely

9条回答
  •  遥遥无期
    2021-02-05 03:28

    Because of DemoApplication.class and HelloController.class in the same package
    Locate your main application class in a root package above other classes
    Take look at Spring Boot documentation Locating the Main Application Class

    Using a root package also allows component scan to apply only on your project.

    For example, in your case it looks like below:

    com.webservice.demo.DemoApplication
    com.webservice.demo.controller.HelloController

提交回复
热议问题