spring/소스코드 (10) 썸네일형 리스트형 실시간검색어,날씨 크롤링과 미디어쿼리 MovieVO package com.example.domain; public class MovieVO { private String title; private String rank; private String image; private String percent; private String link; public String getLink() { return link; } public void setLink(String link) { this.link = link; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getRank() { retur.. 모바일 책검색 파일 만들기 JQueryMoblic.com 사용자가 사용할 수 있는 화면 UI(USER INTERFACE) ※모바일에서 jQueryMobile 보는 방법!※ jQueryMoblie설치파일 [file]-[export]-[web]-[WAR.file]-[Browse..] -apachTomcat>webapp 저장해야되는데 방화벽 문제로 내문서에 저장후 직접 tomcap에 webapps에 파일 붙여넣기 주소:http://192.168.0.42:8088(IPv4 주소[cmd>ipconfig>])/web/mbook(jsp이름) (path) BookController.java(class) package com.example.web; import org.springframework.stereotype.Controller; impor.. 카카오API데이터를 DB Table에 입력저장하기 DaumController.java(class) package com.example.web; import java.util.HashMap; import javax.inject.Inject; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.ResponseBody; import com.example.domain.Criteria; import com.example.d.. KAKAOAPI를 이용한 지역검색,마커,페이징 페이징 클래스 : Creteria.java //시작 페이지,DISPLAY,페이지 정보 package com.example.domain; public class Criteria{ private int page; private int perPageNum; //한 페이지에 출력할 수 있는 개수 public Criteria(){ this.page = 1; this.perPageNum = 3; //한 페이지당 3개가 나온다. } //페이지를 입력 안했을때 설정 public void setPage(int page){ if (page tempEndPage){ endPage = tempEndPage; } prev = startPage == 1 ? false : true; next = endPage * cri.getPe.. kakaoAPI를 이용한 책검색-검색개수,마지막페이지 여부 - 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 package com.example.web; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; @Controller public class DaumController { @RequestMapping("book") public String book() { return "book"; } } ----- 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 .. ○네이버 xml,json 이용한 검색프로그램 파일 만들기 -NaverAPI.java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 package com.example.domain; import java.net.*; import java.io.*; public class NaverAPI { public static String search(String apiURL) { String clientId = "r_XLF45OBi3Xw08BTmvq";//애플리케이션 클라이언트 아이디값"; String clientSecret = "DjUKEbgt13";//애플리케이션 클라이언트 시크릿값"; try { //블로그에서 '그린팩.. 학사 프로그램 만들기 - 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 package com.example.domain; import java.util.Date; public class StudentsVO { private String scode; private String sname; private String dept; private String year; private Date Birthday; private S.. c라이브러리를 이용한 학사 페이징 작업 -ProfessorsVO.java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 package com.example.domain; import java.util.Date; public class ProfessorsVO { private String pcode; private String pname; private String dept; private Date Hiredate; private int salary; private String title; public String .. 이전 1 2 다음