MVC

JAVA/[인프런] 스프링 강의들

[인프런] 스프링 입문 강의 Section5. 회원 관리 예제 - 웹 MVC 개발

회원 웹 기능 - 홈 화면 추가 홈 컨트롤러 추가 package hello.hellospring.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; @Controller public class HomeController { @GetMapping("/") public String home(){ return "home"; } } 회원 관리용 홈 Hello Spring 회원 기능 회원 가입 회원 목록 컨트롤러가 정적 파일보다 우선순위가 높다 회원 웹 기능 - 등록 1. 회원 등록 폼 개발 회원 등록 폼 컨트롤러 @Controller public c..

JAVA/[인프런] 스프링 강의들

[인프런] 스프링 입문 강의 Section2. 스프링 웹 개발 기초

정적 컨텐츠 section1 때 welcome page처럼 어떠한 변형없이 파일을 그대로 전달 resources/static/hello-static.html 정적 컨텐츠 입니다. 서버 가동 후 localhost:8080/hello-static.html 접속하면 어떠한 변형 없이 화면 실행 동작 환경 그림 웹 브라우저가 localhost:8080/hello-static.html을 스프링 부트 내장 톰켓 서버에게 전달 톰켓 서버는 스프링 컨테이너에 hello-static 관련 controller가 있는 지 확인 관련 consroller가 없으면 resources/static 폴더에 hello-static 이름에 html 파일이 있는 지 확인 해당 html 파일을 웹 브라우저에게 전달 MVC와 템플릿 엔진 그..

eune7
'MVC' 태그의 글 목록