Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Beginner Developer
- lifecycle
- sementic versioning
- 모바일개발
- developer
- WWDC21
- Spring
- Domain-driven-develop
- Explict Identity
- Identity
- schemes
- Xcode
- view
- ios
- xml delegate
- Your app is missing support for the following URL schemes: your_ios_client_id
- swift
- 씨샵언어
- Demystify SwiftUI
- native개발
- spring guide
- Lifetime of SwiftUI
- github
- git
- Lazy
- 개발자
- backend
- java
- ios login
- consuming a restful web service
Archives
- Today
- Total
목록REST API (1)
Dev_Dylan

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=””) 을 매개변수에 작..
Backend/Spring
2024. 11. 3. 18:55