https://megamaker.tistory.com/397 [Spring] 타임리프 알아보기 1생각해 보니까 지금까지 혼자서 리액트나 팀프로젝트만 했지 내가 서버 측에서 프론트 작업을 크게 해 본 적이 없다는 것을 깨달았다. 그래서 혼자 간단한 프로젝트 진행을 할 수도 있으니 이megamaker.tistory.com 저번 게시글에 이어서 타임리프에 대해서 알아보도록 하자. 리터럴@GetMapping("/literal")public String literal(Model model) { model.addAttribute("data", "Spring!"); return "basic/literal";} "hello world!" = --> 'hello' + ' world!' = '..