Spring boot without the web server
1. application.properties 수정.
다음 한 줄을 추가한다.
spring.main.web-environment=false
2. main 에서
public static void main(String[] args) { SpringApplication app = new SpringApplication(Application.class); app.setWebEnvironment(false); // 웹환경 미사용 ConfigurableApplicationContext ctx = app.run(args); }
3. main 에서
public static void main(String[] args) { new SpringApplicationBuilder(Application.class).web(false).run(args); }
'How To' 카테고리의 다른 글
이클립스 콘솔에서 JSP 오류 링크 클릭시 소스 연결 방법. (0) | 2018.10.11 |
---|---|
[spring-boot] 서버 포트 변경 (0) | 2017.06.14 |
[YouTube] 유튜브 자막 위치 조정하는 방법. (6) | 2015.11.01 |
[리눅스] URL 을 호출 하여 파일로 저장. (0) | 2015.09.11 |
editplus 에서 groovy 실행 시키기 (0) | 2015.04.19 |