"내가 원하는대로 페이징 구현할 수 있을까?"
전체 데이터 조회 vs 10개 데이터 속도 차이 select bno,title, content,writer,regdate,viewcntfrom tbl_boardorder by bno desc, regdate desc select bno,title, content,writer,regdate,viewcntfrom (select bno,title, content,writer,regdate,viewcnt, rownum rn from (select bno,title,content,writer,regdate,viewcnt from tbl_board order by bno desc))where rn between 11 and 20 Oracle vs MySQL MySQLselect bno,title, content,w..
"Spring ajax는 알아서 해준다?"
Spring JSON HTML ajax Spring Controller------------------------------------------> pom.xml에 JSON Converter추가 com.fasterxml.jackson.core jackson-databind 2.9.3 ※ Person이 하나가 아니라 여러 개면?Person p1, p2, p3;p1= new Person("길동", 13, "학생);p2= new Person("라임", 15, "학생);p3= new Person("주원", 17, "학생); List list = new ArrayList();list.add(p1);list.add(p2);list.add(p3);return list; =>[{"name":"길동","age":13,"..