Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- spring
- transaction
- AOP
- pointcut
- 자바
- Android
- 스프링 핵심 원리
- 스프링 핵심 기능
- springdatajpa
- kotlin
- QueryDSL
- Spring Boot
- 인프런
- Servlet
- db
- Proxy
- 백준
- 스프링
- 그리디
- JPQL
- SpringBoot
- 김영한
- Exception
- http
- jpa
- Greedy
- 알고리즘
- Thymeleaf
- JDBC
- java
Archives
- Today
- Total
목록frontend (1)
개발자되기 프로젝트
['21.07.18] 간단한 프론트 개발#1
기본적인 기능이 갖추어 졌으니, 간단한 프론트를 개발하여 연결해보자. 1. PageController 기존의 ApiController가 아닌 PageController를 만들어 주자. @Controller @RequestMapping("/movie/pages") public class PageController { @GetMapping("/main2") public ModelAndView main(){ return new ModelAndView("main2"); //template 하위경로 } } 이 컨트롤러는 해당 uri로 접속할 경우, tehmplates 하위 경로에 있는 html과 연결시켜 준다. 즉, http://localhost:8080/movie/pages/main2로 접속하면, 작성한 HTM..
Project/영화리뷰 관리
2021. 7. 18. 23:31