티스토리 뷰
일반 자바 프로젝트가 아닌 스프링 부트 프로젝트를 이용해서 특정 기능을 구현할 때, 설정파일이나 dependency 관리를 편하게 하고싶은데 spring-boot-starter-web 패키지를 의존성에 추가하게 되면 상당히 많은 양의 사용하지 않을 클래스들을 로딩하게 됩니다.
build.gradle 파일에 단순히 하나의 패키지(테스트 패키지까지 포함해도 고작 두 개)가 추가되었을 뿐인데도 기본 상태에서 실행시키면 상당히 많은 시간이 소모됩니다.
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
그리고 원하는 기능을 실행한 뒤에도 애플리케이션이 종료되지 않아 강제로 IDE의 종료 버튼을 클릭해줘야 합니다.
그럴 땐 아래처럼 @SpringBootApplication 애노테이션이 있는 메인 클래스에서 웹 애플리케이션 타입 설정을 추가하신뒤 실행시켜 주시면 됩니다.
import org.springframework.boot.SpringApplication;
import org.springframework.boot.WebApplicationType;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class MySpringApplication {
public static void main(String[] args) {
SpringApplication springApplication = new SpringApplication(MySpringApplication.class);
springApplication.setWebApplicationType(WebApplicationType.NONE);
springApplication.run(args);
}
}
설정 파일 수정을 통해 더욱 더 간단하게 해결할 수 있습니다.
- application.yml
spring:
main:
web-application-type: none
- application.properties
spring.main.web-application-type: none
실행 시간을 매우 단축시킬 수 있고 웹 서버가 계속 실행된 상태로 유지되는 것이 아니기 때문에 main 메소드 수행이 끝나면 바로 종료하게 됩니다.
'SpringBoot' 카테고리의 다른 글
스프링 부트 설정 파일 우선 순위 (0) | 2022.06.26 |
---|---|
[SpringFramework] SpEL (Spring Expression Language, 스프링 표현식) (1) | 2021.07.29 |
스프링 부트에 graceful shutdown 적용하기 (0) | 2021.06.11 |
Spring Boot로 효율적인 Docker Image 만들기 (0) | 2021.06.11 |
@Component와 @Bean의 차이 (0) | 2019.09.26 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Java
- Spring Boot Tutorial
- 스프링 부트
- r
- 헥사고날 아키텍처
- Linux
- 스프링 부트 애플리케이션
- intellij
- Spring Boot JPA
- spring boot application
- 알고리즘
- 함께 자라기
- JSON
- spring boot jwt
- spring boot app
- gRPC
- 함께 자라기 후기
- proto3
- 클린 아키텍처
- JPA
- Spring Data JPA
- Spring Boot
- 스프링 부트 튜토리얼
- @ManyToOne
- leetcode
- QueryDSL
- 스프링 데이터 jpa
- Jackson
- 스프링 부트 회원 가입
- 스프링부트
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함