반응형
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
- devops #jenkins
- Vagrant
- variable
- 컨테이너
- 파이썬
- java
- container
- springboot
- devops #engineer
- WEB
- k8s
- ioredirection
- 쿠버네티스
- Kubernetes
- Engineer
- mongodb operator
- nginx
- namespace
- httpd실행
- bash
- multivm
- RSS
- docker
- DOIK
- aws #engineer
- Strimzi
- 초간단파이썬
- python
- 도커
- linux
Archives
- Today
- Total
샤인의 IT (막 적는) 메모장
[JAVA] Springboot DI(의존성 주입) 본문
반응형
Service의 구조체의 의존성 주입을 위해(Controller)
1. Autowired 롬복을 사용
2. 최종적인 값(변하지 않는 객체 값) final 사용
StudentController.java
...
public class StudentController {
private final StudentService studentService;
@Autowired
public StudentController(StudentService studentService) {
this.studentService = studentService;
}
Business Logic을 담는 Service 클래스 생성
Component 대신 Service 롬복 사용
StudentService.java
package com.js.app.student;
import java.time.LocalDate;
import java.time.Month;
import java.util.List;
import org.springframework.stereotype.Service;
@Service
public class StudentService {
public List<Student> getStudents() {
return List.of(new Student(
1L, "mariam","mariam@gmail.com",
LocalDate.of(2000, Month.JANUARY,6),
21)
);
}
}
참고
https://www.youtube.com/watch?v=9SGDpanrc8U&t=1600s
끝
반응형
'Programming > JAVA' 카테고리의 다른 글
[JAVA] Springboot JPA (0) | 2022.01.09 |
---|---|
[JAVA] Springboot postgresql 연동 (0) | 2022.01.02 |
[JAVA] Springboot Controller(API Layer) 생성 (0) | 2022.01.01 |
[JAVA] Springboot 정보를 담는 클래스 생성 (0) | 2022.01.01 |
[JAVA] Springboot AppApplication 실행 (0) | 2022.01.01 |
Comments