IT'S DO
런던 입국 심사
여행/이쁜 추억 여행 2025. 3. 4. 15:32

1️⃣ What is the purpose of your visit to the UK? 🇰🇷 (영국 방문 목적이 무엇인가요?) 👉 (관광, 출장, 유학 등 목적을 말하세요.) i'm visiting to watch the tottenham vs Crystal Palace match on May 10. 2️⃣ How long do you plan to stay in the UK? 🇰🇷 (영국에 얼마나 머무를 계획인가요?) 👉 (정확한 기간을 말하세요. "For 10 days." "For 2 weeks.") For 10 days. 3️⃣ Where will you be staying? 🇰🇷 (어디에서 머무를 예정인가요?) 👉 (호텔, 친척 집, 친구 집 등 구체적인 장소를 말하세요.) i w..

article thumbnail
[jenkins & github] webhook, action 에서 로컬 서버 일때 Payload URL 보내는 법(We couldn't deliver this payload: failed to connect to host 해결)
형상관리/jenkins 2025. 2. 7. 15:14

# 결론 부터 말하면 :domain이 있는 서버면 상관 없이 잘 된다.로컬 서버일때는 github에서 Webhook의 payload든, Actions의 jenkins.yml이든 localhost 주소로 보내면 안된다.보낼시We couldn't deliver this payload: failed to connect to host  위와 같은 에러 나타남.  # 해결법 : 1. ngrok 설치https://ngrok.com/downloads/windows Download ngrokDownload ngrokngrok.com  다운 받기  2. ngrok 토큰값 주입.=> localhost를 외부에서 받을 수 있는 도메인 서버로 만들어준다.처음 실행하면 회원가입 후 토큰값 받아라고 나오는데, 회원 가입 후 이메..

[Error Git]requested url returned error 403
error 2025. 2. 7. 14:55

intellij에서 git push 할때 위와 같은 에러 발생터미널에 git remote set-url origin https://github.com/닉네임/깃 레포 경로하면 해결됨.

[JPA] LifeCycle Callback을 조종할 수 있게하는 어노테이션
개발/Spring Boot 2025. 1. 24. 14:52

# 라이프사이클 콜백어노테이션실행 시점@PrePersist엔티티가 저장되기 직전 (INSERT SQL 전에 실행).@PostPersist엔티티가 저장된 직후 (INSERT SQL 실행 후 실행).@PreUpdate엔티티가 업데이트되기 직전 (UPDATE SQL 전에 실행).@PostUpdate엔티티가 업데이트된 직후 (UPDATE SQL 실행 후 실행).@PreRemove엔티티가 삭제되기 직전 (DELETE SQL 전에 실행).@PostRemove엔티티가 삭제된 직후 (DELETE SQL 실행 후 실행).@PostLoad엔티티가 DB에서 조회된 직후. # 예제 :@Entitypublic class User { @Id @GeneratedValue(strategy = GenerationType.I..