본문 바로가기

전체 글35

RequestMapping과 URI 실습 package com.eom.controllerexercise.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class UserController { @RequestMapping(value = "/user/paid") public String getPaidUser() { return "I'm a paid user."; } @RequestMapping(value = "/user/enterprise") public String getEnterpriseUser() { re.. 2024. 3. 19.
@Controller @RestController 차이 @RestController package com.eom.controllerexercise.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class HelloController { @RequestMapping(value = "/") public String hello() { return "hello"; } } 문자열 hello 를 반환 @Controller package com.eom.controllerexercise.controller; import org.spri.. 2024. 3. 19.
Spring Boot Application Presentation Layer - @Controller Client로부터 요청을 받아 Application Layer에 처리를 위임 Application Layer의 결과를 최종 Client로 전달 Application Layer - @Service 특정 목적을 위한 다양한 비즈니스 로직을 처리 Data Access Layer - @Repository DB에 접근하여 데이터를 저장하거나 조회 하는 역할 Controller 코드 · Spring Controller를 구현하기 위해서는 3개의 기본 Annotation이 사용됨 · @Controller와 @RestController - Controller 역할을 하는 클래스를 지정, 클래스 상단에 명시 · @RequestMapping - 특정 Request.. 2024. 3. 19.
3 윈도우 노트북을 쓰다 맥북을 사서 자바도 새로 깔고 인텔리제이도 새로 깔고 환경 변수 등등등... 설치 하고 뭐 하고 익숙해지고 하니까 시간이 순삭 당했다. 스프링 공부도 다시 시작했는데 열심히 해야겠다. 좀 더 지치고 힘든 삶을 살아야겠다.. 아자아자 화이티잉 2024. 3. 18.