[intellij] 그래들 스프링부트 프로젝트 화면으로 데이터 가져오기(gradle + springboot) - 4
이번 글에서는 화면에서 디비에 접근해서 데이터를 가져와보려 합니다. 데이터는 임시로 넣어놨습니다 테스트를 위한 버튼 메인 페이지 입니다. gogo ++ ajax 사용법 더보기 $.ajax({ type: "post", global: true, async: true, url: "ajax_request.php", dataType : "html", timeout: 30000, cache: true, data: {"id":"1", "mode":"write"}, contentType : "application/x-www-form-urlencoded; charset=utf-8", error: function (jqXHR, textStatus, errorThrown) { // 통신에 에러가 있을경우 처리할 내용(생략가..