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 | 31 |
Tags
- grep
- tomcat
- Quartz
- Mac
- resource
- 줄바꿈 문자
- bash
- 네트워크
- GIT
- lsof
- plugin
- ssh
- vscode
- context
- VirtualBox
- Eclipse
- port
- 단축키
- xargs
- find
- Windows 10
- Windows
- maVen
- profile
- netsh
- import
- IntelliJ
- Source
- web.xml
- JavaScript
Archives
- Today
- Total
develog
[spring boot] static 폴더 파일 읽기 본문
@Autowired
private ResourceLoader resourceLoader;
String filePath = "classpath:static/my-static-file.txt";
InputStream inputStream = resourceLoader.getResource(filePath).getInputStream();
String str = FileCopyUtils.copyToString(new InputStreamReader(inputStream));
System.out.println("str = " + str);
'Dev > Spring Boot' 카테고리의 다른 글
[spring boot] request parameter debug (0) | 2021.04.06 |
---|---|
[spring boot] Hibernate5Module (0) | 2020.11.02 |
[spring boot] 초기화 코드 (0) | 2020.11.01 |
[spring boot 2.3] javax.validation dependency (0) | 2020.10.25 |
[spring boot] multiple properties file (0) | 2020.08.12 |
Comments