Ejemplo: cómo realizar operaciones de crud en spring boot packagecom.example.demo.com.example.demo.resource;importjava.util.List;importjava.util.Optional;importorg.springframework.beans.factory.annotation.Autowired;importorg.springframework.web.bind.annotation.DeleteMapping;importorg.springframework.web.bind.annotation.GetMapping;importorg.springframework.web.bind.annotation.PathVariable;importorg.springframework.web.bind.annotation.PostMapping;importorg.springframework.web.bind.annotation.RequestBody;importorg.springframework.web.bind.annotation.RequestMapping;importorg.springframework.web.bind.annotation.RequestMethod;importorg.springframework.web.bind.annotation.RequestParam;importorg.springframework.web.bind.annotation.ResponseBody;importorg.springframework.web.bind.annotation.RestController;importcom.example.demo.com.example.demo.model.Student;importcom.example.demo.com.example.demo.repository.StudentRep;@RestController@RequestMapping(value =”/webapi”)publicclassStudentResource@AutowiredprivateStudentRep studentRep;@RequestMapping(method Leer Más