반응형 spring2 [Spring] 인프런 Spring 입문 - 회원 관리 예제 일반 웹 애플리케이션 구조 * 컨트롤러: 웹 MVC 컨트롤러 * 서비스: 비즈니스 로직 * 리포지토리: DB에 저장되는 데이터와 관련있는 로직. 도메인 객체를 DB에 저장 * 도메인: 비즈니스 도메인 객체 로직 구현 * domain 패키지 - 멤버 객체. 멤버는 간단하게 id와 name으로 구성. package hello.hellospring.domain; public class Member { private Long id; private String name; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return name; } public void setN.. 2024. 1. 1. [Spring] Spring Boot 동작 방법 Spring Boot 동작 방법 1. 웹 브라우저 주소창에 localhost:8080/hello 주소 입력 2. 스프링에 내장되어 있는 내장 톰켓 서버가 스프링에게 전달 3. 스프링에서 '/hello'로 매핑(@GetMapping) 되어 있는 html 찾음 1) main > resources > template > hello.html 안녕하세요. 손님 2) main > java > controller > HelloController.java (@GetMapping) package hello.hellospring.controller; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.. 2023. 12. 31. 이전 1 다음