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 | 29 | 30 | 31 |
Tags
- 스프링 핵심 원리
- jpa
- java
- JPQL
- 김영한
- http
- JDBC
- springdatajpa
- Thymeleaf
- Greedy
- 그리디
- 인프런
- transaction
- 자바
- kotlin
- db
- SpringBoot
- 알고리즘
- spring
- Spring Boot
- 백준
- 스프링 핵심 기능
- AOP
- QueryDSL
- Exception
- Proxy
- pointcut
- Servlet
- Android
- 스프링
Archives
- Today
- Total
목록Back End (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