MÉTODO GET
@GetMapping("/products")
public ResponseEntity<List<ProductModel>> getAllProducts() {
return ResponseEntity.status(HttpStatus.OK).body(productRepository.findAll());
}Atualizado
@GetMapping("/products")
public ResponseEntity<List<ProductModel>> getAllProducts() {
return ResponseEntity.status(HttpStatus.OK).body(productRepository.findAll());
}Atualizado