I am not able to convert my existing REST Controller into Ratpack Handler with SpringBoot application.
Please anybody help me to get this done. Below is my controller class:
@RestController
@RequestMapping("/api")
public class RestApiController {
public static final Logger logger = LoggerFactory.getLogger(RestApiController.class);
@Autowired
private EmployeeService EmployeeService;
/**
* Service will retrieve data for particular Employee
*
* @param id Employee Id
* @return ResponseEntity of Employee
*/
@GetMapping(value = "/Employee/{id}")
public Employee getEmployee(@PathVariable("id") String id) {
logger.info("Fetching Employee with id {}", id);
return EmployeeService.findById(id);
}
/**
* Service will create Employee data into the System
*
* @param Employee Data of the Employee
* @param UriComponentsBuilder
* @return ResponseEntity of String
*/
@PostMapping(value = "/Employee/")
public void createEmployee(@RequestBody Employee Employee) {
logger.info("Creating Employee : {}", Employee);
EmployeeService.saveEmployee(Employee);
}
}
Assuming EmployeeService makes calls to the database, then any blocking operations should be wrapped in calls to Blocking.get().
Ratpack Documentation - Performing Blocking Operations