티스토리 뷰
반응형
Resource 추상화
java.net.URL을 추상화 한 것이다.
추상화한 이유
- java.net.URL은 classpath 기준으로 리소스를 읽어오는 기능이 부재되어 있다.
- ServletContext를 기준으로 상대 경로를 읽어오는 기능이 부재되어 있다.
- URL은 기본적으로 프로토콜 http, https, ftp, file, jar를 지원해준다.
이런 부분들을 통합해서 하나의 추상화로 만든것이다.
구현체
- ClassPathResource : classpath 접두어를 사용하면 해당 classpath 기준으로 리소스를 찾는다.
- FileSystemResource : filesystem 기준으로 리소스를 찾는다.
- ServletContextResource : 사실상 가장 많이 사용. 웹 애플리케이션 루트에서 상대 경로로 리소스를 찾는것이다.
리소스 읽어오기
- Resource 타입은 location 문자열과 ApplicationContext 타입에 따라 결정된다.
Object ctx = new FileSystemXmlApplicationContext("xxx.xml"); //파일 시스템 리소스를 읽어온다.
Object ctx = new ClassPathXmlApplicationContext("xxx.xml"); //classpath 리소스를 읽어온다.
-
FileSystem 혹은 Classpath등 ApplicationContext를 제외하고 WebApplicationContext 이하는 모두 ServletContextResource를 읽어온다.
-
ApplicationContext 타입에 상관 없이 리소스 타입을 강제하려면 java.net.URL 접두어(classpath://) 중 하나를 사용할 수 있다.
-
classpath:me/whiteship/config.xml -> ClassPathResource
-
file://some/resource/path/config.xml -> FileSytemResource
Resource resource = resourceLoader.getResource("classpath:test.txt"); Resource resource = resourceLoader.getResource("file://test.txt");
-
- 접두어를 사용하여 리소스를 설정하는 것이 명시적으로 표현되어 있어 추천한다
배운 구조를 한번 살펴보자
@Autowired
ApplicationContext resourceLoader; //기본 WebApplicationContext
@Override
public void run(ApplicationArguments args) throws Exception {
System.out.println(resourceLoader.getClass()); //WebApplicationContext이므로 기본적으로 ServletContextResource가 됨
Resource resource = resourceLoader.getResource("test.txt");
System.out.println(resourceLoader.getClass()); //WebApplicationContext이므로 기본적으로 ServletContextResource가 됨
//ServletContextResoucrce 웹 애플리케이션 루트부터 찾게 되는데, 스프링 부트가 띄워주는 내장형 톰캣에는 context path(루트)가 빈값이므로 리소스를 찾을 수 없다.
System.out.println(resource.exists());
//디스크립션을 추가해준다.
System.out.println(resource.getDescription());
}
반응형
'Spring > Spring 핵심' 카테고리의 다른 글
[스프링 핵심] 스프링 AOP: 개념 소개 (0) | 2020.01.30 |
---|---|
[스프링 핵심] Validation 추상화 (0) | 2020.01.17 |
[스프링 핵심] ResourceLoader (0) | 2019.12.29 |
[스프링 핵심] ApplicationEventPublisher (0) | 2019.12.29 |
[스프링 핵심] MessageSource (0) | 2019.12.29 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 팩토리 메소드 패턴
- try with resources
- Spring
- jdk버전
- @Lazy
- 인프런
- effectivejava
- package-private
- 이펙티브자바
- springboot
- 빈 순환 참조
- ifPresent
- try catch finally
- 이펙티브 자바
- java
- 점층적 생성 패턴
- 김영한
- 빌더 패턴
- 정적팩터리메서드
- java8
- 생성자
- 스프링부트
- JPA
- flatMap
- junit
- 자바8
- Effective Java
- mustache
- 복사 팩토리
- 연관관계
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함