org.apache.tomcat.util.http.fileupload.FileUploadBase$SizeLimitExceededException: the request was rejected because its size (2010349724) exceeds the configured maximum (1073741824)

위와 같은 에러가 발생한 경우 전송 가능한 파일 사이즈 크기 설정을 늘려야 합니다.

아래 순서대로 진행해 주세요

  1. Launcher Lite 설치 경로의 properties 폴더로 이동하세요.

    %localappdata%\\Suresofttech\\STATIC Launcher LITE\\properties

    https://s3-us-west-2.amazonaws.com/secure.notion-static.com/84ef03a7-0037-4a7e-a152-0e3a16024884/Untitled.png

  2. 해당 서비스의 .yml 파일을 아래와 같이 수정합니다.

    spring:
      servlet:
        multipart:
          max-file-size: {size}MB
          max-request-size: {size}MB
    
  3. 저장 후 Launcher Shell에서 서비스를 재설치 해주세요.

    stop {서비스 이름}
    uninstall {서비스 이름}
    install {런처 설치 경로에 "installAll" 파일 열면 서비스 별 명령어}
    start {서비스 이름}