All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.codecentric.spring.boot.chaos.monkey.configuration.ChaosMonkeyLoadTimeWeaving Maven / Gradle / Ivy

package de.codecentric.spring.boot.chaos.monkey.configuration;

import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.EnableLoadTimeWeaving;
import org.springframework.context.annotation.LoadTimeWeavingConfiguration;
import org.springframework.context.annotation.Profile;
import org.springframework.instrument.classloading.LoadTimeWeaver;
import org.springframework.instrument.classloading.ReflectiveLoadTimeWeaver;

/** @author Benjamin Wilms */
@Configuration
@Profile("chaos-monkey")
@EnableLoadTimeWeaving(aspectjWeaving = EnableLoadTimeWeaving.AspectJWeaving.ENABLED)
public class ChaosMonkeyLoadTimeWeaving extends LoadTimeWeavingConfiguration {

  @Override
  public LoadTimeWeaver loadTimeWeaver() {
    return new ReflectiveLoadTimeWeaver();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy