본문 바로가기
반응형

개발/IT 기타12

JPA - No EntityManager with actual transaction available for current thread JPA 사용 중에 발생 될 수 있는 예외 메시지 입니다. Entity에 대한 등록, 수정, 삭제하기 위헤서는 트랜젝션 등록이 필요합니다. 에외 메시지 org.springframework.dao.InvalidDataAccessApiUsageException: No EntityManager with actual transaction available for current thread - cannot reliably process 'remove' call at org.springframework.orm.jpa.EntityManagerFactoryUtils.convertJpaAccessExceptionIfPossible(EntityManagerFactoryUtils.java:400) at org.springfr.. 2024. 2. 23.
curl - SSL certificate problem: unable to get local issuer certificate SSL certificate problem: unable to get local issuer certificate 발생 원인 오류는 SSL/TLS 연결을 시도할 때 발생하는 문제입니다. 이 문제는 보통 서버 또는 클라이언트 측에서 SSL 인증서를 올바르게 인식하지 못할 때 발생합니다. 문제를 해결하기 위해 몇 가지 방법을 시도할 수 있습니다 curl: (60) SSL certificate problem: unable to get local issuer certificate More details here: https://curl.se/docs/sslcerts.html curl failed to verify the legitimacy of the server and therefore could not es.. 2024. 2. 21.
오픈소스 ftp Cyberduck 최고의 오픈소스 ftp 인 Cyberduck 를 소개합니다. 파일질라에 비해서 인지도는 떨어지지만 윈도우와 macOS에서 무료로 사용이 가능하고 성능도 훨씬 좋습니다 ^^ 개요 파일질라 사용하면 인코딩부터 열받는게 한두가지가 아닌데요. Cyberduck 을 사용하면 그런 고통을 없앨 수 있습니다. 저는 특히 S3 연결할때 많이 사용했네요. ^^ Cyberduck 은 위의 내용 처럼 FTP , SFTP , WebDAV , Amazon S3 , OpenStack Swift , Backblaze B2 , Microsoft Azure 및 OneDrive , Google Drive 및 Dropbox를 지원하는 Mac 및 Windows용 자유 서버 및 클라우드 스토리지 브라우저입니다. 속도 비교 어림짐작으로 비교해.. 2024. 2. 14.
git 의 .gitignore가 작동하지 않을때 해결방법 .git ignore 가 작동하지 않을때 대처법 .gitignore가 제대로 작동되지 않아서 ignore 처리된 파일이 changes 에 나올때가 있습니다. 아래 명령어로 캐시 내용을 전부 삭제 후 다시 add 해서 커밋하시면 됩니다. git rm -r --cached . git add . git commit -m "fixed untracked files" 참고자료 https://stackoverflow.com/questions/11451535/gitignore-is-ignored-by-git https://stackoverflow.com/questions/25436312/gitignore-not-working 2024. 2. 14.
반응형