@AutoConfigureAfter etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
@AutoConfigureAfter etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

26 Haziran 2018 Salı

SpringBoot @AutoConfigureAfter Anotasyonu

Örnek
Şöyle yaparız.
@Component
@AutoConfigureAfter({ DataSourceAutoConfiguration.class,
    HibernateJpaAutoConfiguration.class })
@PropertySource("classpath:flyway.properties")
public class FlywayConfig {

  @PostConstruct
  public void startMigrations() {
   ...
  }
}