사이트)https://javacan.tistory.com/entry/Reactor-Start-1-RS-Flux-Mono-Subscriberhttps://durtchrt.github.io/blog/english/spring.io/webflux/https://parkcheolu.tistory.com/134http://woowabros.github.io/experience/2019/03/18/tech-toby-reactive.html WebFlux org.springframework.boot spring-boot-starter-webflux io.projectreactor reactor-test 3.3.2.RELEASE test package com.example.demo.webflux; import org...
WEB
참고사이트 : https://jongmin92.github.io/2019/03/31/Java/java-async-1/https://moonscode.tistory.com/123 비동기logging.level.org.springframework.web=DEBUG package com.example.demo.Asynchronous; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; import java.util.concurrent.Callable; import java.util.concurrent.ThreadLocalRandom; @RestC..
Jetty참고사이트 : https://stackoverflow.com/questions/26655875/spring-boot-redirect-http-to-httpshttps://www.daleseo.com/spring-boot-embedded-server-change/ 다운로드 사이트 : https://www.eclipse.org/jetty/download.html 인텔리J 서버 추가 HTTP 에서 HTTPS 리다이렉트 전게시글과 변경사항)1) war 파일로 패키징2) tomcat을 제외3) jetty를 추가 4.0.0 org.springframework.boot spring-boot-starter-parent 2.2.4.RELEASE com.example demo war 0.0.1-SNAPSHOT d..
내장된 서버 선택 및 구성 # 다수의 사용 가능한 일반 서버 속성 #server.port=HTTP 서버 포트, 기본값 8080 #server.address=바인딩될 IP주소, 기본값 0,0,0,0(예, 모든 IP) #server.use-forward-headers= spring boot 2.2에서는 deprecated 되었음 #server.jetty.max-http-form-post-size=HTTP 헤더의 최대 크기, 기본값 0(무제한) #server.connection-timeout= deprecated #server.http2.enabled=현재 컨테이너가 지원할 경우 http2 활성화 여부, 기본값 false #server.compression.enabled=HTTP 압출 확성화 여부, 기본값 f..
애플리케이션 국제화src/main/resource에서 messages.properties 찾았을 때 자동으로 MessageSource를 구성한다 spring.messages.basename= 쉼표로 구분된 기본 이름 목록, 기본값 messages spring.messages.encoding= 메시지 묶음 인코딩 방식, 기본값 UTF-8 spring.messages.always-use-message-format= MessageFormat이 전체 메시지에 적용되는지 여부, 기본값 false spring.messages.fallback-to-system-locale= 감지된 언어의 리소스 묶음이 없는 경우 사용되는 시스템 언어, 비활성화되면 기본 파일로부터 기본값을 불러온다. 기본값 false spring.m..