Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- micrometer tracing
- asyncconfigurer
- DeferredImportSelector
- java.util.list
- @FunctionalInterface
- jpa
- elasticsearch
- java lambda
- kotlin
- EnableWebMvc
- grpc
- java
- CompletableFuture
- ResponseBody
- traceasynccustomautoconfiguration
- asynccustomautoconfiguration
- Spring JPA
- awssecretsmanagerpropertysources
- spring
- SpringMVC
- aws secretmanager
- Sleuth
- wire type
- list
- java list
- Spring Boot
- traceId
- spring MVC
- map
- HashMap
Archives
- Today
- Total
목록SpringBootApplication (1)
du.study기록공간

이번엔 간단하게 SpringBootApplication 에 대하여 정리해보려 합니다. 먼저 Spring boot 프로젝트를 실행하면 다음과 같은 @SpringBootApplication이 생성되며, 내부는 다음과 같습니다. @SpringBootApplication public class DemoApplication { public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); } } @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Documented @Inherited @SpringBootConfiguration @EnableAutoC..
스프링
2020. 5. 7. 00:52