일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Xcode
- WWDC21
- 적절한 사용방법
- developer
- consuming a restful web service
- ios
- ios login
- Lifetime of SwiftUI
- Lazy
- lazy 위험성
- Identity
- Explict Identity
- schemes
- git
- java
- sementic versioning
- lazy 사용
- Structural Identity
- Demystify SwiftUI
- Your app is missing support for the following URL schemes: your_ios_client_id
- view
- spring guide
- github
- 씨샵언어
- Spring
- native개발
- Beginner Developer
- lifecycle
- xml delegate
- swift
- Today
- Total
목록Spring (2)
Dev_Dylan

Point : RestTemplateRESTful Web Service 사용하기요약RestTemplate 를 사용해 RESTful 웹 서비스 호출RestTemplate 의 getForObject() 메서드를 사용해 JSON → java 파싱하기.정리Guide 순서API 뿌려줄 파일 다운 및 셋팅data 파싱을 위한 DTO 생성RestTemplate 를 통한 서버 호출 및 JSON 파싱프로젝트를 진행하기 위한 필수!이 Guide를 진행을 위해 아래 프로젝트를 사용해야 함.(포트번호 8080으로 json데이터를 뿌려주면 8081에서 json parsing 작업을 위함.)https://github.com/spring-guides/gs-consuming-rest.git위 프로젝트를 통해 Server를 올려주기 ..

Spring Guide [REST APIs] 맛보기_1Point : Local Web Server에 “Hello World” 출력http://localhost:8080/greetingWeb Application을 Local Server 에서 실행 할 때 접속하는 기본 URL127.0.0.1 = localhost 동일하다.Get 요청을 아래 두 URL을 통해 출력함.http://localhost:8080/greetinghttp://localhost:8080/greeting?name=MyName요약 정리@GetMapping(””) 이 적용된 method에서 해당 경로 요청이 들어오면 실행하도록 Mapping 해준다.@RequestParam(value = “”, defaultValue=””) 을 매개변수에 작..