나의 개발 기록

나의 개발 기록

  • 분류 전체보기 (637)
    • 내 정보 (2)
    • Installation & Settings (7)
      • Programming Tools (IDE) (1)
      • VMware (3)
      • GNS3 (0)
      • MacBook (3)
    • Network (43)
      • Router & Routing (8)
      • NAT (4)
      • VLAN (3)
      • Redundancy (5)
      • Tunneling (1)
      • Practice (8)
    • Operating System (24)
      • Windows (12)
      • Linux (6)
      • Practice (5)
    • Language (39)
      • Java (36)
      • ES6 (3)
    • Database (48)
      • MySQL (13)
      • Redis (10)
      • MongoDB (15)
      • Practice (10)
    • FastRoute (PHP) (11)
    • Design (3)
      • 원데이 (3)
    • iOS (21)
    • React (29)
      • React (6)
      • React Native (23)
    • Spring (162)
      • Spring (38)
      • Spring Boot (34)
      • Practice (90)
    • GCP (13)
      • 원데이 (13)
    • AWS (39)
      • 원데이 (8)
      • Practitioner (16)
      • Terraform (0)
      • Practice (15)
    • Docker (29)
    • CICD (4)
    • Git (5)
      • 원데이 (5)
    • Clean Code (5)
    • 코딩 테스트 (128)
      • 개념 학습 및 정리 (20)
      • 필수 문제 (44)
      • 실전 문제 (64)
    • 삽질 피하기 (17)
    • 참고하기 좋은 내용 (6)
    • RESTful API (1)
  • 홈
  • 태그
  • 방명록
RSS 피드
로그인
로그아웃 글쓰기 관리

나의 개발 기록

컨텐츠 검색

태그

계속 유지 감사합니다 블로그 이전

최근글

댓글

공지사항

아카이브

Spring/Practice(90)

  • [Practice] 클라이언트 요청에 대한 주소 만들기 (5)

    1. 문제 Rest 컨트롤러 형식의 어노테이션 이용 주소매핑은 Rest 형식의 어노테이션 이용 HTTP 메서드는 GET 방식 리턴값은 "hello rest api" 문자열 리턴 주소는 "/api/helloworld" 2. 풀이 package com.example.jpa.sample; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestCont..

    2021.04.12
  • [Practice] 클라이언트 요청에 대한 주소 만들기 (4)

    1. 문제 Rest 컨트롤러 형식의 어노테이션 이용 주소매핑은 Rest 형식의 어노테이션 이용 HTTP 메서드는 GET 방식 리턴값은 "hello rest" 문자열 리턴 주소는 "/hello-rest" 2. 풀이 package com.example.jpa.sample; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; ..

    2021.04.12
  • [Practice] 클라이언트 요청에 대한 주소 만들기 (3)

    1. 문제 컨트롤러 인식을 위한 Controller 어노테이션 이용 주소매핑은 RequestMapping이 아닌 Rest 형식의 어노테이션 이용 HTTP 메서드는 GET 방식 (어노테이션 이용) 리턴값은 "hello spring" 문자열 리턴 (문자열 리턴을 위한 어노테이션 이용) 주소는 "/hello-spring" 2. 풀이 package com.example.jpa.sample; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestContro..

    2021.04.12
  • [Practice] 클라이언트 요청에 대한 주소 만들기 (2)

    1. 문제 컨트롤러 인식을 위한 Controller 어노테이션 이용 주소매핑은 RequestMapping을 이용 HTTP 메서드는 GET 방식 리턴값은 "hello world" 문자열 리턴 주소는 "/helloworld" 2. 풀이 기본적으로 @Controller 어노테이션은 리턴 타입이 String이 아닌 View 페이지를 리턴한다. 따라서 문자열을 리턴하기 위해 @ResponseBody 어노테이션을 사용한다. package com.example.jpa.sample; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springfra..

    2021.04.12
  • [Practice] 클라이언트 요청에 대한 주소 만들기 (1)

    1. 문제 컨트롤러 인식을 위한 Controller 어노테이션 이용 주소매핑은 RequestMapping을 이용 HTTP 메서드는 GET 방식 리턴값은 아무것도 없음 주소는 "/first-url" 2. 풀이 package com.example.jpa.sample; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; @Controller public class FirstController { @RequestMapping(value = "/first-..

    2021.04.12
  • [Practice] 프로젝트 생성

    1. 프로젝트 생성 - 설정 Gradle Java 8 JAR - 의존성 H2 Database Lombok Spring Configuration Processor Spring Data JPA Spring REST Docs Spring Security Spring Web

    2021.04.12
1 ··· 12 13 14 15
깃허브
© 2018 TISTORY. All rights reserved.

티스토리툴바