1. 먼저 zxing을 사용하기 위해 pom.xml에 추가해준다. com.google.zxing javase 3.1.0 2. controller에 아래와 같이 작성한다. 아래의 메소드는 QRCode를 생성하고 저장하는 메소드이다. @RequestMapping("qr.do") public String makeqr(HttpServletRequest request,HttpSession session,String storeName) throws WriterException, IOException { String root = request.getSession().getServletContext().getRealPath("resources"); //현재 서비스가 돌아가고 있는 서블릿 경로의 resources 폴더 ..