Код: Выделить всё
package com.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication(scanBasePackages = {"com.controller"})
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
< /code>
Это мой демонстрационный пакет, где Main () ловит ... < /p>
package com.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class AuthController {
@GetMapping(value = "/welcome")
public String welocome() {
return "welcome bro..";
}
}
Подробнее здесь: https://stackoverflow.com/questions/795 ... ng-boot-pr