일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- jenkins 설치
- jenkins github
- MongoDB
- Jenkins
- jenkins install
- 리눅스
- jenkins jdk
- Jenkins Pipeline
- grafana
- CI/CD
- JavaScript
- Docker
- java
- docker network
- error
- Spring Boot
- nginx
- grpc
- 리액트
- MySQL
- IntelliJ
- spring
- vue.js
- gradle
- jenkins maven
- REACT
- Linux
- jpa
- jenkins github 연동
- subnetmask
- Today
- Total
목록BACK (34)
뭐든 즐기면서 ;)

package ai.maum.lom.api.retriever.file;import ai.maum.lom.api.common.BaseException;import ai.maum.lom.api.meta.ResponseCode;import io.swagger.v3.oas.annotations.tags.Tag;import lombok.RequiredArgsConstructor;import org.springframework.core.io.InputStreamResource;import org.springframework.core.io.Resource;import org.springframework.http.*;import org.springframework.web.bind.annotation.GetMapping..

오류 Caused by: java.io.FileNotFoundException: class path resource [io/] cannot be resolved to URL because it does not exist 원인 web.xml 'classpath:'가 제대로 되어 있지 않음. '/io'가 아니라 '/spring'으로 수정해주기. 해결 classpath를 알맞게 수정 classpath:/spring/context-*.xml
외부 라이브러리 추가 implementation 'com.spotify:docker-client:8.16.0' implementation 'org.glassfish.jersey.inject:jersey-hk2:2.31' 소스 코드 try { // Docker 호스트에 연결 DockerClient docker = DefaultDockerClient.fromEnv().build(); // 컨테이너 ID 또는 이름 String containerIdOrName = "centos8"; // docker 내부에서 실행할 명령어(= opensmile 실행 명령어) String command = "command 입력"; // 새로운 실행 환경 생성 ExecCreation opensmileExec = docker.exe..

https://www.ffmpeg.org/download.html '.exe' 파일을 다운로드 받은 후 환경 변수 설정을 한다 설치 및 실행 확인을 해본다. > ffmpeg -version 아래는 음성파일로부터 loudness를 얻기 위해 찾은 명령어인데, 걍 참고용으로 남겨놓는다. > ffmpeg -i resources.wav -af ebur128=peak=true -f null - 2> loudness_info.txt

설치 https://github.com/coreybutler/nvm-windows 위 사이트로 이동하여 'Download Now!' 클릭 'Download Now!' 클릭을 하면, 아래와 같은 화면이 뜬다. 좀 더 아래로 내려 가서 해당 파일을 설치 후 실행하여 nvm을 설치하면 되는데, 이때 설치 경로가 나온다. 기본 경로는 'C:\Users\tada\AppData\Roaming\nvm'와 같이 '~\AppData\Roaming' 하위에 설치가 된다. 설치 직후 환경 변수 설정이 되어 있지 않아 여기서 nvm 명령어를 사용하면 된다. 아니면 환경변수 설정을 해주면 된다. 사용법은 linux에서와 같다. 사용법 참고 : https://tadaiswhatever.tistory.com/318

설치 https://github.com/nvm-sh/nvm#installing-and-updating 위 사이트로 이동하면 아래와 같이 설치 방법이 나온다. > curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash # nvm 활성화 > source ~/.nvm/nvm.sh # 버전 및 설치 확인 > nvm --version 위와 같이 진행하였을 때 설치과정(아래) 사용 # 원하는 버전의 node 설치 > nvm install [node 버전] # 버전 전환 > nvm use [버전] # 설치된 node 버전 목록 확인 > nvm ls
오류 내용 getInputStream() has already been called for this request 해결 방법 getReader()를 여러 번 할 수 있도록 하는 방법으로 'HttpServletRequestWrapper' 클래스를 상속은 클래스를 하나 작성해 줍니다. package ai.maum.data.edit.wrapper; import org.apache.commons.lang3.StringUtils; import javax.servlet.ReadListener; import javax.servlet.ServletInputStream; import javax.servlet.ServletRequest; import javax.servlet.http.HttpServletRequest; i..
WebSocket 개념에 대한 것은 무수히도 많은, 좋은 글들이 많기 때문에 생략하고, 실 구현에 필요한 코드만 쏘심플하게 작성했다. 1. dependencies 추가 dependencies { ... implementation 'org.springframework.boot:spring-boot-starter-websocket' ... } 2. 소켓 구현 package ai.maum.bsbf.conf.websocket; import ai.maum.bsbf.util.LogUtil; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.spr..