我有一个叫做“NotifiationService”的类:@Service("notificacionService")公共类NotificacionServiceImpl实现了NotificacionService{
//servicio llama a repositorio
@Autowired
@Qualifier("notificacionService")
private NotificacionService notificacionService;
@Override
public void send(String to, St
我有一个非常简单的Controller方法,它使用Apache POI库下载excel文件,该库在Service类中生成,如下所示:
XSSFWorkbook workbook = new XSSFWorkbook();
// Excel sheet populated and added to workbook
FileOutputStream out = new FileOutputStream(new File("file.xlsx"));
workbook.write(out);
out.close();
下面的Controller方法触发一个下载。
@Respo