Last active
April 23, 2017 16:05
-
-
Save rozhok/51274c89b2e0c9072bfff6c9053e9133 to your computer and use it in GitHub Desktop.
Typical Spring + Spring Boot + Spring Cloud App
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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