Boa tarde,
Estou tentando fazer um teste chamando o serviço, porém quando tento pelo postman da erro 404. As classes estão com as anotações necessaria. Poderia me dizer onde estou errando?
PagamentosApplication
@SpringBootApplication
public class PagamentosApplication {
public static void main(String[] args) {
SpringApplication.run(PagamentosApplication.class, args);
}
}
Pagamentos Controller
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping
public class PagamentosController {
@GetMapping("/hello")
public String hello(){
return "HELLO";
}
}
Erro postman:
Estrutura de pastas: