일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- chart.js
- Eclipse
- myBatis
- 이클립스
- AJAX
- github
- 깃허브
- 웹개발
- jQuery
- spring
- bootstrap
- firestore
- 오블완
- 티스토리챌린지
- error
- java
- CSS
- restapi
- SQLD
- icon
- 코딩
- HTML
- 오류
- 기업설명회
- vscode
- SQL
- JavaScript
- 스파르타코딩클럽
- Firebase
- 자바
- Today
- Total
목록분류 전체보기 (98)
푸들푸들
계층 구조Mapper@Mapperpublic interface DBMapper { List> continentList(); List> countrytList(int continentId); List> cityList(int countryId);} SELECT continent_id continentId , continent_name continentName FROM continent SELECT country_id countryId , country_name countryName FROM country WHERE continent_id = #{continentId} SELECT city_id cityI..
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)..
HTML: 정적Javascript: 동적, 사용자와 상호작용--> "2" 출력HTML -> "1+1" 출력이벤트onclickonclick의 속성값 = jsonchange마우스를 뺄 때onkeydown키보드의 키를 눌렀을 때 데이터 타입(자료형)산술 연산자 +-*/propertise: .length.toUpperCase(): 대문자로.indexOf('문자'): '문자'의 인덱스값 .trim(): 공백 제거 대입 연산자 =variable / constant 선택자class: 그룹핑id: 한개만 특정span document.querySelector('선택할것') : 태그, id 등 선택하기document.getElementById('id').style : 특정 id에 style 적용하기--> JS로 바꾸기..
class, interface 차이 controller, restController 차이
@WebServlet@Filter@WebListener구분 스프링 AOP란