У меня есть web-сервис spring-boot rest, который возвращает CSV-файл с числовым форматом для всех его ячеек.Я хочу, чтобы некоторые ячейки были текстовыми.
@GetMapping(path = "/generateReport", produces = "text/csv")
public ResponseEntity<?> generateReport() throws Exception {
String csvString = reportService.generateReport();
ResponseEntity<String> responseEntity = new ResponseEntity<String>(csvString, HttpStatus.OK);
return responseEntity;
}
Я хочу, чтобы некоторые ячейки столбцов форматировали текст, а не число.