iframe 썸네일형 리스트형 iframe 으로 get request 이용하여 데이터 전달하기 + spring boot 1. main.html Your browser does not support inline frames. 2. iframe.html 3. spring controller @GetMapping(“/index”) public String iframeHome(){ return “/index”; } @GetMapping("/iframe") public String iframeTest(@RequestParam Map requestParams, Model model){ String username = requestParams.get("username"); String password = requestParams.get("password"); model.addAttribute("username", username); .. 더보기 이전 1 다음