본문 바로가기

개발~31

Postman 사용시 도움이 될 팁 공유 API 테스트하고 싶을때 사용할 수 있는 여러가지 도구들이 있지만, 호출할 API 목록을 저장하거나 환경별로 나눠서 호출하거나 여러번 호출해야 할 때 저는 주로 포스트맨을 사용합니다. https://www.postman.com/home Postman API Platform | Sign Up for FreePostman is an API platform for building and using APIs. Postman simplifies each step of the API lifecycle and streamlines collaboration so you can create better APIs—faster.www.postman.com 포스트맨을 단순히 API 호출 정도로만 사용하고 있는 분들이 많은 것.. 2024. 10. 13.
Kotlin 소개 인프런~ 윤재성의 Google 공식 언어 Kotlin 프로그래밍 시작하기 https://www.inflearn.com/course/%EA%B5%AC%EA%B8%80-%EA%B3%B5%EC%8B%9D-%EC%BD%94%ED%8B%80%EB%A6%B0-%EC%8B%9C%EC%9E%91%ED%95%98%EA%B8%B0/dashboard 자바 개발자를 위한 코틀린 입문(Java to Kotlin Starter Guide) https://www.inflearn.com/course/java-to-kotlin/dashboard https://kotlinlang.org/ [Kotlin Programming Language kotlinlang.org](https://kotlinlang.org/) Kotlin 언어 특징 .. 2022. 12. 10.
자주 사용하는 카프카 명령어 broker1.url.com:9092,broker2.url.com:9092 : 사용자가 생성한 broker url 입니다. 여기서는 2개 입니다. my-custom-topic : 사용자가 생성한 topic 명 입니다. my-custom-group-id : 사용자가 생성한 group id 명 입니다. 토픽 목록 조회 > ./kafka-topics.sh --bootstrap-server broker1.url.com:9092,broker2.url.com:9092 --list 토픽 생성 > ./kafka-topics.sh --create --bootstrap-server broker1.url.com:9092,broker2.url.com:9092 --replication-factor 2 --partitions 2.. 2021. 11. 4.
Go tour https://tour.golang.org/welcome/1 package main import "fmt" func main() { fmt.Println("Hello, 세계") }Internal Directories Code in or below a directory named "internal" is importable only by code in the directory tree rooted at the parent of "internal". Here's an extended version of the directory layout above: /home/user/go/ src/ crash/ bang/ (go code in package bang) b.go foo/ (go code in pac.. 2021. 8. 9.
IntelliJ에서 자주 쓰는 Git 명령어(feat. JIRA) 저는 보통 IntelliJ 단축키를 이용해서 Git을 사용합니다. 그런데 가끔 터미널에서 Git 명령어를 쓸 때가 있습니다. IntelliJ에서 제가 자주 사용하는 단축키와 터미널에서 사용하는 단축키를 공유하려고 합니다. 단축키는 mac 기준입니다! IntelliJ에서 단축키는 Preferences...(⌘,) -> Keymap 에서 확인할 수 있습니다. IntelliJ 단축키를 이용한 Git 커밋 : ⌘K ( $ git commit -am '커밋메세지' ) 커밋하기 위해 단축키를 입력하면 아래와 같은 창이 뜹니다. 파일의 변경 내용을 볼 수 있고, 어느 브랜치에서 작업한지도 표시됩니다. 또한 커밋 메세지도 입력할 수 있습니다. 파일을 더블 클릭해서 커밋하기 전에 파일 내용을 다시 확인하고, 수정할 수도.. 2021. 5. 24.
[IntelliJ] MyBatis binding 에러 이번에 여러 사람들과 mybatis로 빠르게 빠르게 변환하는 작업을 진행했습니다. 인터페이스 Mapper를 이용해서 연결하는데, 저 같은 경우는 Mapper 메서드 매개변수에 @Param을 넣지 않으면 아래와 같은 에러가 발생했습니다. org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'barcode' not found. Available parameters are [arg1, arg0, param1, param2] 그런데 몇몇 분들은 @Param이 없어도 잘 동작하더라구요! 왜 그런지 이유를 찾아보니, intelliJ build 설정이 달라서 생.. 2021. 5. 24.