Error Message: cannot find symbol
symbol: method saveAndFlash(Product)
location: variable repository of type ProductRepository
I would like to perform an Update with the use of JpaRepository
@RestController
public class ProductController {
@Autowired
private ProductRepository repository;
@RequestMapping("/product/{productId}")
public Product getProduct(@PathVariable long id) {
return repository.findOne(id);
}
@RequestMapping(method = RequestMethod.PUT, value = "/update")
public Product updateProduct(@RequestBody Product product, @PathVariable long id) {
product.setId(id);
return repository.saveAndFlash(product);
}
}