250x250
Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Union-find
- List
- dfs
- sql
- set
- map
- JPA
- date
- javascript
- alter
- BFS
- priority_queue
- html
- spring boot
- union_find
- NIO
- GC로그수집
- CSS
- 스프링부트
- 리소스모니터링
- 스택
- 큐
- 힙덤프
- math
- Java
- string
- scanner
- deque
- Properties
- Calendar
Archives
- Today
- Total
매일 조금씩
[Spring] range에 따른 동영상 분기 처리(한번에/range request) - FileSystemResource 본문
Spring Framework
[Spring] range에 따른 동영상 분기 처리(한번에/range request) - FileSystemResource
mezo 2022. 4. 18. 17:55728x90
반응형
이 기능을 구현하면서 Spring framework을 써야할 백가지 이유 중 하나가 추가되었다.
내가 구현하고자 하는 기능은..
request로 header에
range가 들어오면 동영상을 해당 range만큼 range request로 보내고 (206 : partial content)
range가 들어오지 않으면 동영상을 한번에 보내는 것이다. (200 : ok)
header의 range를 가져와서 직접 분기처리를 해줘야하는줄 알았지만
FileSystemResource라는 아주 좋은 클래스가 있었다.
range값의 유무를 통해 알아서 200 or 206으로 처리해주기 때문에 range request 구현조차 필요없었다.
컨트롤러를 보면 다음과 같다.
@GetMapping(value = "/{media_id}/mp4")
public ResponseEntity<FileSystemResource> getMp4ById(@PathVariable("media_id") long id) {
DocumentDirectoryUtil directoryUtil = new DocumentDirectoryUtil(id);
FileSystemResource fileSystemResource = new FileSystemResource(
Paths.get(directoryUtil.getDirectoryPath(), mediaService.getMediaById(id).getFileName()));
return ResponseEntity.ok().body(fileSystemResource);
}
위 코드처럼 FileSystemResource에 동영상파일을 넣어주기만 하면 된다.
728x90
반응형
'Spring Framework' 카테고리의 다른 글
Entity가 생성되지 않아서 data.sql 실행에 실패하는 에러 (feat. Spring boot의 DB 초기화) (1) | 2024.11.08 |
---|---|
@Builder 와 @NoArgsConstructor 를 함께 사용했을 때 발생하는 오류 (0) | 2022.03.18 |
[스프링] 서버 캐시(Cache) 사용해서 GET 서비스 성능 개선하기 (0) | 2022.03.11 |
[스프링] HTTP Range Requests로 비디오 스트리밍 만들기 (0) | 2022.03.04 |
[스프링] 비동기 서비스 구현하기 (@Async 사용) (0) | 2022.02.24 |