Server/Spring Boot
-
[Spring Boot] AWS S3를 이용하여 파일 업로드Server/Spring Boot 2020. 9. 8. 22:29
AWS S3 설정과 키 발급은 다 되어 있다고 가정하고 글을 진행하려 한다. pom.xml org.springframework.cloud spring-cloud-starter-aws 2.0.1.RELEASE org.springframework.cloud spring-cloud-aws-context 1.2.1.RELEASE org.springframework.cloud spring-cloud-aws-autoconfigure 1.2.1.RELEASE 먼저 프로젝트는 Maven으로 진행되며 pom.xml에 위의 의존성을 추가해주자. application.properties cloud.aws.credentials.accessKey=엑세스 키 ID (AWS S3에서 발급 받은 키) cloud.aws.credent..
-
[Spring Boot] 스프링부트에서 JSP 사용하는 법Server/Spring Boot 2020. 8. 18. 13:43
이번 글에서는 스프링 부트에서 jsp를 사용하기 위해 설정하는 법에 대해서 정리하려 한다. spring-boot-starter-web 에 포함된 tomcat 은 JSP 엔진을 포함하고 있지 않다. jsp 파일은 Springboot 의 templates 폴더안에서 작동하지 않는다. 그래서 jsp를 적용하기 위해서는 아래와 같은 의존성을 추가해야한다. pom.xml javax.servlet jstl org.apache.tomcat.embed tomcat-embed-jasper build.gradle dependencies { implementation 'javax.servlet:jstl' implementation "org.apache.tomcat.embed:tomcat-embed-jasper" } 기본적으..