Kotlin – RestTemplateClient가 SpringBoot 서버에 Base64 파일/이미지 전송/수신
Kotlin – RestTemplateClient가 SpringBoot 서버에 Base64 파일/이미지 전송/수신
이 자습서에서는 RestTemplate Client를 통해 base64 파일/이미지를 게시하거나 SpringBoot 서버에 가져오는 데 Kotlin 언어를 사용하는 방법을 설명합니다.
기술
–Java 1.8
–Kotlin 1.2.20
- Spring 툴킷 – 버전 3.9.2풀어주다
- 스프링 부츠 - 1.5.10.풀어주다
–Apache Maven 3.5.2
둘목표
Kotlin SpringBoot 프로젝트 {Kotlin Restful API, Kotlin RestTemplate Client} 2개를 만들었습니다. 다음과 같습니다.
KotlinRestfulAPIs 프로젝트는 두 개의 RestAPIs를 제공합니다.
@PostMapping(value = "/post")
fun post(@RequestBody image: ImageData): String
...
@GetMapping(value = "/get")
fun get(@RequestParam("name") name: String): ImageData
...
자세한 내용은 다음을 참조하십시오.https://grokonez.com/spring-framework/spring-boot/kotlin-spring-boot/kotlin-resttemplateclient-sendrecieve-base64-fileimage-springboot-server
Reference
이 문제에 관하여(Kotlin – RestTemplateClient가 SpringBoot 서버에 Base64 파일/이미지 전송/수신), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/loizenai/kotlin-resttemplateclient-send-recieve-base64-file-image-to-springboot-server-172g텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)