We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
날씨 데이터 수집 후 이벤트 발행이 보장되지 않음
public void createWeatherAdvisory(double latitude, double longitude) throws URISyntaxException, IOException { // ... 기존 날씨 데이터 가져오는 로직 //이벤트 전송 applicationEventPublisher.publishEvent(new WeatherEvent.WeatherWarning(location, msg)); WeatherAdvisory save = weatherAdvisoryRepository.save(weatherAdvisory); }
날씨 저장 + 이벤트 전송이 ACID가 지켜지지 않음,
날씨 DB 트랜잭션이 완료되더라도 이벤트 발행이 보장되지 않음.
The text was updated successfully, but these errors were encountered:
♻️ refactor: 이벤트 발행 방식 변경 (#44)
d102204
DDonghyeo
No branches or pull requests
Title
Content
날씨 데이터 수집 후 이벤트 발행이 보장되지 않음
날씨 저장 + 이벤트 전송이 ACID가 지켜지지 않음,
날씨 DB 트랜잭션이 완료되더라도 이벤트 발행이 보장되지 않음.
The text was updated successfully, but these errors were encountered: