springboot 5

[Springboot] mustache template으로 게시판 만들기 - 4 (삭제)

[Springboot] mustache template으로 게시판 만들기 - 4 (삭제) 목차 [Springboot] mustache template 설정 [Springboot] mustache template으로 게시판 만들기 - 1 (등록) [Springboot] mustache template으로 게시판 만들기 - 2 (조회) [Springboot] mustache template으로 게시판 만들기 - 3 (수정) > [Springboot] mustache template으로 게시판 만들기 - 4 (삭제) 4. 게시글 삭제 posts-update.mustache - 삭제 버튼 추가 삭제 {{>layout/header}} 게시글 수정 글 번호 제목 작성자 내용 {{post.content}} 취소 수정..

[Springboot] mustache template으로 게시판 만들기 - 3 (수정)

[Springboot] mustache template으로 게시판 만들기 - 3 (수정) 목차 [Springboot] mustache template 설정 [Springboot] mustache template으로 게시판 만들기 - 1 (등록) [Springboot] mustache template으로 게시판 만들기 - 2 (조회) > [Springboot] mustache template으로 게시판 만들기 - 3 (수정) [Springboot] mustache template으로 게시판 만들기 - 4 (삭제) 3. 게시글 수정 PostsApiController.java update 메소드 package com.sooki.book.springboot.web; import com.sooki.book.spr..

[Springboot] mustache template으로 게시판 만들기 - 2 (조회)

[Springboot] mustache template으로 게시판 만들기 - 2 (조회) 목차 [Springboot] mustache template 설정 [Springboot] mustache template으로 게시판 만들기 - 1 (등록) > [Springboot] mustache template으로 게시판 만들기 - 2 (조회) [Springboot] mustache template으로 게시판 만들기 - 3 (수정) [Springboot] mustache template으로 게시판 만들기 - 4 (삭제) 2. 조회 index.mustache UI 변경 - 목록 출력 영역 추가 {{>layout/header}} 스프링 부트로 시작하는 웹 서비스 Ver.2 글 등록 게시글번호 제목 작성자 최종수정일 ..

[Springboot] mustache template으로 게시판 만들기 - 1 (등록)

[Springboot] mustache template으로 게시판 만들기 - 1 (등록) 목차 [Springboot] mustache template 설정 > [Springboot] mustache template으로 게시판 만들기 - 1 (등록) [Springboot] mustache template으로 게시판 만들기 - 2 (조회) 1. 게시글 등록 화면 만들기 레이아웃 파일 추가 src/main/resources/templates 디렉토리에 header.mustache, footer.mustache 파일 생성 header.mustache footer.mustache index.mustache 수정 - layout 적용 - 글 등록 버튼 추가 {{>layout/header}} 스프링 부트로 시작하는 ..

[Springboot] mustache template 설정

[Springboot] mustache template 설정 환경 : Springboot v2.1.7, intellij 2021.1.1 mustache 플러그인 설치 build.gradle 의존성 주입 compile('org.springframework.boot:spring-boot-starter-mustache') mustache의 파일 위치는 기본적으로 src/main/resources/templates 여기에 mustache 파일을 두면 스프링 부트에서 자동으로 로딩한다. index.mustache 스프링 부트로 시작하는 웹 서비스 index.mustache index url을 매핑한다 IndexController.java package com.sooki.book.springboot.web; imp..

반응형