일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Eclipse
- github
- error
- SQLD
- 웹개발
- myBatis
- firestore
- CSS
- 자바
- 코딩
- 기업설명회
- restapi
- icon
- 티스토리챌린지
- spring
- 오블완
- 스파르타코딩클럽
- Firebase
- 오류
- bootstrap
- 깃허브
- AJAX
- JavaScript
- jQuery
- 이클립스
- java
- SQL
- HTML
- vscode
- chart.js
- Today
- Total
목록2024/12/10 (2)
푸들푸들
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..
@RestController @RestControllerpublic class UserRest { @GetMapping(path = "/userJson") public List> user(){ List> list = new ArrayList(); Map u1 = new HashMap(); u1.put("name", "user1"); u1.put("age", 20); list.add(u1); Map u2= new HashMap(); u2.put("name", "user1"); u2.put("age", 20); list.add(u2); Map u3 = new HashMap(); u3.put("name", "user1"); u3.put("age", 20); list.add(u3)..