You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use HttpStatus.FOUND- @GetMapping("product")
public ResponseEntity<?> getAllProducts(){
ResponseEntity responseEntity;
try{
productService.getAllProducts();
responseEntity= new ResponseEntity<List>(productService.getAllProducts(),HttpStatus.OK);
The text was updated successfully, but these errors were encountered:
Use HttpStatus.FOUND-
@GetMapping("product")
public ResponseEntity<?> getAllProducts(){
ResponseEntity responseEntity;
try{
productService.getAllProducts();
responseEntity= new ResponseEntity<List>(productService.getAllProducts(),HttpStatus.OK);
The text was updated successfully, but these errors were encountered: