Почему SpringApplicationBuilder.run() использует AtomicBoolean obj, а затем использует synchronized, AtomicBoolean не может обеспечить потокобезопасность?

#java #spring-boot #synchronized #atomic

#java #весенняя загрузка #синхронизированный #атомарный

Вопрос:

Я прочитал исходный код SpringBoot в 1.5.X, но я обнаружил проблему в классе SpringApplicationBuilder , это run код метода:

     /**
     * Create an application context (and its parent if specified) with the command line
     * args provided. The parent is run first with the same arguments if has not yet been
     * started.
     * @param args the command line arguments
     * @return an application context created from the current state
     */
    public ConfigurableApplicationContext run(String... args) {
        if (this.running.get()) {
            // If already created we just return the existing context
            return this.context;
        }
        configureAsChildIfNecessary(args);
        if (this.running.compareAndSet(false, true)) {
            synchronized (this.running) {
                // If not already running copy the sources over and then run.
                this.context = build().run(args);
            }
        }
        return this.context;
    }
 

как вы видите run , метод использует поле running AtomicBoolean для обеспечения потокобезопасности, compareAndSet не является потокобезопасным? и зачем использовать synchronized ?

 if (this.running.compareAndSet(false, true)) {
    synchronized (this.running) {
        // thread safe
    }
}
 
 if (this.running.compareAndSet(false, true)) {
    // not thread safe ?
}
 

что значит по этому поводу в SpringApplicationBuilder.run() ?