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
{{ message }}
This repository was archived by the owner on Aug 23, 2025. It is now read-only.
代码:

@RequestMapping(value = "api/downTemplate", method = RequestMethod.GET)
public void downTemplate(HttpServletResponse response) {
List userList = equipmentService.findEquipmentList(new Equipment());
ExcelKit.$Export(Equipment.class, response).downXlsx(userList, true);
}
实体类:
报错:
java.lang.NoSuchMethodError: org.apache.poi.xssf.streaming.SXSSFSheet.createDrawingPatriarch()Lorg/apache/poi/xssf/streaming/SXSSFDrawing;
请问一下大神这是什么情况,需要怎么修改??