13. '게시글 수정' 기능 추가
스프링부트와 AWS로 혼자 구현하는 웹서비스 2024. 10. 20. 19:26 13. '게시글 수정' 기능 추가

src/main/java/com/jojoldu/springboot/web  - PostsApiController.java 전에 만들어둔 @PutMapping("/api/v1/posts/{id}")  이 주소를 이제 사용할 거임.  src/main/resources/templates  - posts-update.mustache  생성{{>layout/header}}게시글 수정 글 번호 제목 작성자 ..

12. '게시글 조회' 기능 추가
스프링부트와 AWS로 혼자 구현하는 웹서비스 2024. 10. 20. 18:40 12. '게시글 조회' 기능 추가

src/main/resources/templates  -  index.mustache  수정AS-IS{{>layout/header}} Starting With Spring Boot Web Service 글 등록 {{>layout/footer}}TO-BE{{>layout/header}} Starting With Spring Boot Web Service 글 등록 게시글 번..

11. CDN 추가, '게시글 등록' 기능 추가
스프링부트와 AWS로 혼자 구현하는 웹서비스 2024. 10. 20. 17:55 11. CDN 추가, '게시글 등록' 기능 추가

src/main/resources/templates/layout  -  footer.mustachesrc/main/resources/templates/layout  -  header.mustache  생성 footer.mustache  -  jquery cdn 과 bootstrap js cdn을 화면 가장 최하단 body 끝나기 전에  추가header.mustache -  bootstrap css cdn을  화면 가장 최상단 head에  추가  src/main/resources/templates  -  index.mustache   에 header, footer 추가,  버튼 추가{{>layout/header}} Starting With Spring Boot Web Service ..

10. 템플릿 엔진 mustache 사용
스프링부트와 AWS로 혼자 구현하는 웹서비스 2024. 10. 20. 16:38 10. 템플릿 엔진 mustache 사용

mustache 사용하기 위한 dependecies 추가,mustache 파일을 넣어두면 springboot가 자동으로 인지하는 경로는 src/main/resources/templates. build.gradle AS-ISplugins { id ("org.springframework.boot") version ("2.7.1") id ("io.spring.dependency-management") version ("1.0.11.RELEASE") id("java")}group = "com.jojoldu.book"version = "1.0-SNAPSHOT"repositories { mavenCentral()}dependencies { implementation("org.springf..

image