스프링부트 jxls 엑셀 탬플릿 이용하여 만들기
dependency 추가 implementation 'org.jxls:jxls:2.12.0' implementation 'org.jxls:jxls-poi:2.12.0' implementation 'org.apache.poi:poi:5.2.2' implementation 'org.apache.poi:poi-ooxml:5.2.2' jxls 1.x 버전을 사용하지 않고 2.x로 구현했다. poi 라이브러리도 사용하기 때문에 poi도 추가해줘야 한다. @GetMapping("/excel.json") public void excel(JavaBean bean, HttpSession session, HttpServletResponse res) throws IOException, InvalidFormatExceptio..
2022.10.06