Skip to content

Instantly share code, notes, and snippets.

@rozhok
Last active April 23, 2017 16:05
Show Gist options
  • Save rozhok/51274c89b2e0c9072bfff6c9053e9133 to your computer and use it in GitHub Desktop.
Save rozhok/51274c89b2e0c9072bfff6c9053e9133 to your computer and use it in GitHub Desktop.
Typical Spring + Spring Boot + Spring Cloud App
@SpringBootApplication
@EnableDiscoveryClient
@EnableScheduling
@EnableAsync
@EnableConfigurationProperties
@PropertySource("mapping.properties")
@EnableAutoConfiguration
@EnableFeignClients("me.rozhkov.integration")
@EnableRetry
@ComponentScan({
"me.rozhkov.app"
})
public class Application {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment