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
가장 좋은 방법은 3번인 것 같다.
1번 과 2번을 사용하게 될 경우, @PostConstruct 나 ApplicationRunner 는 특정 빈이 초기화 되거나, 애플리케이션 전체가 초기화 된 후에 시간대를 설정하는 건데, 만약 빈의 초기화 순서가 엇갈려서
시간대가 설정되기 이전에 특정 빈에서 시간을 참조한다면 예외 상황이 발생할 수 있으므로
안전한 3번 방법을 사용한다.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
To Do
가장 좋은 방법은 3번인 것 같다.
1번 과 2번을 사용하게 될 경우, @PostConstruct 나 ApplicationRunner 는 특정 빈이 초기화 되거나, 애플리케이션 전체가 초기화 된 후에 시간대를 설정하는 건데, 만약 빈의 초기화 순서가 엇갈려서
시간대가 설정되기 이전에 특정 빈에서 시간을 참조한다면 예외 상황이 발생할 수 있으므로
안전한 3번 방법을 사용한다.
ETC
The text was updated successfully, but these errors were encountered: