개발 기록
211118 타임어택(1001) 스프링으로 바꾸기 본문
-놓친 것
$.ajax({
type: "POST",
url: "/articles",
contentType: 'application/json; charset=utf-8',
data: JSON.stringify(data),
success: function (response) {
alert("저장되었습니다!")
window.location.reload();
}
})
멍청하게 data를 {'data' : data} 로 썼다
@EnableJpaAuditing
@SpringBootApplication
public class Test2Application {
public static void main(String[] args) {
SpringApplication.run(Test2Application.class, args);
}
}
생성일자 쓸때는 @EnableJpaAuditing 추가해줘야 반영이 된다.
@DeleteMapping("/articles/{id}")
public Long deleteArticle(@PathVariable Long id){
articleService.deleteArticle(id);
return id;
}
url 에다가 ${id} 라고 썼다..;;
@RestController
Controller 클래스에다가 어노테이션 붙이기 json 형태 데이터 return 할거니깐.
-새로 해본 것
List<Article> findAllByOrderByCreatedAtDesc();
생성일자 기준으로 내림차순 가져오기
'TIL' 카테고리의 다른 글
211121 WIL (0) | 2021.11.21 |
---|---|
211120 구현테스트(1119) 복습 (0) | 2021.11.20 |
211117 스프링 구현테스트 복습 (0) | 2021.11.17 |
211115 도커 (0) | 2021.11.15 |
211114 WIL (0) | 2021.11.15 |
Comments