반응형
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
- 컨테이너
- k8s
- Vagrant
- devops #engineer
- ioredirection
- devops #jenkins
- python
- 쿠버네티스
- Kubernetes
- Engineer
- Strimzi
- variable
- namespace
- container
- nginx
- DOIK
- mongodb operator
- docker
- RSS
- 도커
- aws #engineer
- linux
- springboot
- multivm
- 파이썬
- WEB
- httpd실행
- java
- bash
- 초간단파이썬
Archives
- Today
- Total
샤인의 IT (막 적는) 메모장
[JAVA] Springboot Controller(API Layer) 생성 본문
반응형
앞전에서 AppApplication에 설정하여 실행했지만
실제로 따로 Controller 클래스를 생성하여 사용함.
사용한 rombok
@RestController
@RequestMapping
@GetMapping
MVC 구조
기존 AppApplication 내 GET 매핑 정보를 Controller로 생성한다.
StudentController.java
package com.js.app.student;
import java.time.LocalDate;
import java.time.Month;
import java.util.List;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping(path = "api/v1/student")
public class StudentController {
@GetMapping
public List<Student> hello() {
return List.of(
new Student(1L, "Mariam", "Mariam@gmail.com",
LocalDate.of(2000, Month.JANUARY, 5),21)
);
}
}
AppApplication.java
package com.js.app;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class AppApplication {
public static void main(String[] args) {
SpringApplication.run(AppApplication.class, args);
}
}
참조
https://www.youtube.com/watch?v=9SGDpanrc8U&t=1600s
끝
반응형
'Programming > JAVA' 카테고리의 다른 글
[JAVA] Springboot postgresql 연동 (0) | 2022.01.02 |
---|---|
[JAVA] Springboot DI(의존성 주입) (0) | 2022.01.02 |
[JAVA] Springboot 정보를 담는 클래스 생성 (0) | 2022.01.01 |
[JAVA] Springboot AppApplication 실행 (0) | 2022.01.01 |
[JAVA] 기본 정리 (0) | 2021.12.30 |
Comments