일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Firebase
- Eclipse
- SQL
- SQLD
- 티스토리챌린지
- 오블완
- HTML
- java
- CSS
- error
- bootstrap
- AJAX
- spring
- chart.js
- icon
- vscode
- 오류
- 웹개발
- myBatis
- 이클립스
- JavaScript
- 깃허브
- restapi
- jQuery
- 코딩
- firestore
- github
- 자바
- 기업설명회
- 스파르타코딩클럽
- Today
- Total
목록chart.js (2)
푸들푸들
SakilaMapper.java@Mapperpublic interface SakilaMapper { // 1. 카테고리 별 영화 수 List> selectFilmByCategory(); // 2. 러닝타임(length)이 3시간 이상 / 2시간 이상 / 1시간 이상 / 1시간 미만인 영화 수 Map selectFilmByLength(); // 3. 대여료(rental_rate)가 4달러 이상 / 3달러 이상 / 2달러 이상 / 1달러 이상 / 1달러 미만인 영화 수 Map selectFilmByRentalRate(); // 4. 영화 등급(rating) 별 수 List> selectFilmRating(); // 5.가장 많은 배우가 참여한 영화 1~5위 List> selectFilmByActor..
Rest APIlocalhost/country?currentPage=1--> localhost/country/1@RestControllerpublic class CountryRest { @Autowired CountryService countryService; // localhost/country?currentPage=1 @GetMapping("/country") public List> country(@RequestParam Integer currentPage){ List> list = countryService.getCountryListByPage(currentPage); return list; } // localhost/country2/1 @GetMapping("/country2/{curren..