🛤️현상 : Could not send request Cloud Agent Error: Can not send requests to localhost. Select a different agent.라는 오류가 포스트맨에서 발생했고 ⭐원인 : 포스트맨에서 localhost로 요청을 보내려고 할 때 발생하는 문제입니다. Cloud Agent는 localhost로의 요청을 지원하지 않기 때문에 해당 오류가 발생합니다. 🗝️해결 : @CrossOrigin(origins = "http://localhost:3000", methods = {RequestMethod.OPTIONS, RequestMethod.DELETE, RequestMethod.GET, RequestMethod.POST, RequestMethod.P..