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
- grpc
- jpa
- DeferredImportSelector
- awssecretsmanagerpropertysources
- wire type
- ResponseBody
- java lambda
- spring
- EnableWebMvc
- HashMap
- traceasynccustomautoconfiguration
- SpringMVC
- Spring Boot
- java.util.list
- map
- @FunctionalInterface
- micrometer tracing
- traceId
- Sleuth
- asyncconfigurer
- CompletableFuture
- aws secretmanager
- java list
- kotlin
- java
- Spring JPA
- elasticsearch
- asynccustomautoconfiguration
- list
- spring MVC
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