목록Spring (82)
충분히 쌓여가는
@RestController @GetMapping hello() 클래스 추가 package com.buildenough.ch1; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @RestController @SpringBootApplication public class Ch1Application { public static v..
라이브러리를 다운받지 않아서 생기는 문제 pom.xml 마우스 우클릭 -> Add as Maven Project pom.xml 마우스 우클릭 -> Maven -> Reload project pom.xml 파일에 들어가면 dependencies가 생긴 것을 알 수 있다
Spring Initializr 링크 Project: Maven Spring Boot: 2.7.16 Language: Java Java: 11 Packaging: Jar Dependencies: Spring Boot DevTools, Spring Web, Thymeleaf, Lombok GENERATE 선택
상세 페이지에 Edit 버튼 만들기 show.mustache 에서 태그 추가 후 "/articles/{{article.id}}/edit" 작성 {{>layouts/header}} Id Title Content {{#article}} {{id}} {{title}} {{content}} {{/article}} Edit Go to Article List {{>layouts/footer}} 서버 실행 Edit 요청을 받아 데이터 가져오기 edit() 메서드 기본 틀 만들기 AritlceControler.java에서 edit() 메서드 추가, @GetMapping(), URL은 "/articles/{id}/edit" @GetMapping("articles/{id}/edit") public String edit()..