profile
늦은 것 같지만 이제부터라도 차근차근 하나씩 정리하기

gson 참고

https://hianna.tistory.com/629

2023년 7월 17일
·
0개의 댓글
·

sample-launch.json

2023년 6월 25일
·
0개의 댓글
·

java thread

https://wikidocs.net/230

2023년 6월 19일
·
0개의 댓글
·

[python] poetry에서 ssl 에러 발생할 때

pip install할 때 ssl 에러가 발생하면 아래와 같이 --trusted-host 옵션을 추가해서 해결 가능한데,poetry에서는 옵션을 추가해서 ssl 에러를 넘어갈 방법이 없다. poetry는 아래와 같은 방법으로 가능하다.우선 pip --version을 실

2022년 10월 3일
·
0개의 댓글
·

urlclassloader

urlclassloaderhttps://daily-study.tistory.com/3?category=697146Loading Propertieshttps://daily-study.tistory.com/7?category=697146

2022년 7월 11일
·
0개의 댓글
·

thread-safe map, list

2022년 6월 13일
·
0개의 댓글
·

java producer/consumer 구현

https://roytuts.com/busy-waiting-or-spinning-in-java-multi-threading/

2022년 6월 12일
·
0개의 댓글
·

tail

2022년 6월 12일
·
0개의 댓글
·

TcpServer / Client

2022년 6월 12일
·
0개의 댓글
·
post-thumbnail

잡동사니

이클립스에서 input 데이터 파일 설정

2022년 6월 11일
·
0개의 댓글
·

jetty

참고: https://blog.naver.com/PostView.naver?blogId=ambidext&logNo=222434508009&categoryNo=0&parentCategoryNo=10&viewDate=¤tPage=1&postListTopCurren

2022년 6월 11일
·
0개의 댓글
·

내 생애 첫 github pull request / merge

https://github.com/bentoml/BentoML/pull/2319

2022년 4월 1일
·
0개의 댓글
·

[tensorflow serving] 로그 레벨 설정

tensorflow serving 도커 컨테이너로 실행하는데 로그가 너무 많이 출력되고 있다.아무런 처리를 안해도 거의 매초 info 레벨 로그가 찍히는 듯한 느낌.그래서 로그 레벨을 warn 이상으로 변경을 알아봤다.그렇게 찾은 아래 링크에서 TF_CPP_MIN_VL

2022년 2월 4일
·
0개의 댓글
·

[Springboot] Parameter 1 of constructor in ClassA required a bean of type 'ClassB' that could not be found

jwt 적용 연습 중에 맞이한 에러를 정리한다.에러 메시지는 아래와 같다.Parameter 1 of constructor in ClassA required a bean of type 'ClassB' that could not be found단순한건데.. 오랜만에 보니

2022년 2월 3일
·
0개의 댓글
·
post-thumbnail

[Springboot] 테스트용 ssl 적용하기

https로 Springboot 서버를 어떻게 실행할 수 있을지 궁금했었는데 방법을 찾아서 정리해본다.application.yml에는 아래와 같은 ssl 설정을 추가한다.위에서 정한 값을 keytool 인자로 전달하여 인증서 파일을 생성한다.(keytool은 jdk에

2022년 2월 3일
·
0개의 댓글
·

[Springboot] PostConstruct에서 transactional 처리

RestController 클래스 생성 후 테스트용 데이터를 초기화하는 아래 코드를 추가했다.그리고 맞이한 에러 메시지...Caused by: javax.persistence.TransactionRequiredException: No EntityManager with

2022년 2월 2일
·
0개의 댓글
·

[FastAPI] reponse["content-disposition"] === undefined ???

fastapi에서 파일이나 stream을 응답할 때 FileResponse를 구성해서 응답한다. 파일명을 포함하는 방법은 아래와 같이 filename 인자를 추가해주면 응답 헤더 content-disposition에 filename이 추가된다. 브라우저 개발자 화면에

2022년 1월 29일
·
0개의 댓글
·