JPA Controller Update Function

111 Views Asked by At

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);
        }
}
1

There are 1 best solutions below

0
On
@RestController
@RequestMapping("/products")
public class ProductController {

        @Autowired
        private ProductRepository repository;

        @GetMapping("/{id}") // GET /products/1
        public Product get(@PathVariable("id") long id) {
            return repository.findOne(id);
        }

        @PutMapping("/{id}") // PUT /products/1
        public Product update(@RequestBody Product product, @PathVariable("id") long id) {
            product.setId(id);
            return repository.saveAndFlush(product);
        }
}