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
- 1차원 DP
- 2차원 dp
- 99클럽
- @Builder
- @GeneratedValue
- @GenericGenerator
- @NoargsConstructor
- @Transactional
- Actions
- Amazon EFS
- amazon fsx
- Android Studio
- ANSI SQL
- ApplicationEvent
- assertThat
- async/await
- AVG
- AWS
- Azure
- bind
- builder
- button
- c++
- c++ builder
- c03
- Callback
- case when
- CCW
- chat GPT
- CICD
Archives
- Today
- Total
기록
[튜토리얼] 의존성 주입(2) 자바코드 본문
1. 개요
해당 포스팅에서는 아래와 같은 구조를 가지는 프로젝트(2022.08.29 - [Web/backend] - [튜토리얼] spring boot 게시판 curd)에 자바 코드로 의존성을 주입한다. SpringConfig가 객체의 생성과 의존성 주입을 담당하도록 해 결합도를 낮추고 유연성을 확보할 수 있다.
2. 코드
1) 파일 위치
2) 코드
(1) SpringConfig
package com.example;
import com.example.notice.NoticeDao;
import com.example.notice.NoticeService;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class SpringConfig {
@Bean
public NoticeDao noticeDao(){
return new NoticeDao();
}
@Bean
public NoticeService noticeService(){
return new NoticeService(noticeDao());
}
}
(2) NoticeController
package com.example.notice;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@RestController
@RequestMapping("/notice")
public class NoticeController{
private final NoticeService noticeService;
public NoticeController(NoticeService noticeService){
this.noticeService = noticeService;
}
@PostMapping
public void create(@RequestBody NoticeVo notice){
noticeService.create(notice);
}
@PutMapping
public void update(@RequestBody NoticeVo notice){
noticeService.update(notice);
}
@GetMapping
public List<NoticeVo> read(){
return noticeService.read();
}
@DeleteMapping("/{noticeId}")
public void delete(@PathVariable("noticeId") Long id){
noticeService.delete(id);
}
}
(3) NoticeDao
package com.example.notice;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
public class NoticeDao{
private final Map<Long, NoticeVo> noticeMap = new HashMap<>();
public void create(NoticeVo notice){
noticeMap.put(notice.getId(), notice);
}
public void update(NoticeVo notice){
noticeMap.replace(notice.getId(), notice);
}
public List<NoticeVo> read(){
return noticeMap.keySet().stream()
.map(noticeMap::get)
.collect(Collectors.toList());
}
public void delete(Long id){
noticeMap.remove(id);
}
}
(4) NoticeService
package com.example.notice;
import java.util.List;
public class NoticeService{
private final NoticeDao noticeDao;
public NoticeService(NoticeDao noticeDao){
this.noticeDao = noticeDao;
}
public void create(NoticeVo notice){
noticeDao.create(notice);
}
public void update(NoticeVo notice){
noticeDao.update(notice);
}
public List<NoticeVo> read(){
return noticeDao.read();
}
public void delete(Long id){
noticeDao.delete(id);
}
}
(5) NoticeVo
package com.example.notice;
import lombok.*;
@Getter
@AllArgsConstructor
public class NoticeVo{
private Long id;
private String title;
private String content;
}
3. 결과
1) TestCode
객체를 호출할 때마다 생성하는 것이 아니라, 하나의 객체를 재사용하여 메모리 낭비를 막아야한다. 스프링 컨테이너는 객체를 싱글톤으로 관리하여 많은 사용자가 각각 요청을 할 때마다 하나의 인스턴스를 공유해서 사용한다.
2) Postman
Postman으로 테스트한 결과 CURD가 의도한대로 동작함을 확인할 수 있었다.
4. 마무리하면서
@Congifuration
@Congifuration 어노테이션을 단 클래스는 빈 설정을 담당하는 클래스가 된다. 이 클래스 안에서 @Bean 어노테이션이 붙은 메소드를 선언하면, 그 메소드를 통해 스프링 빈을 정의하고 생명주기를 설정하게 된다.
'Web > Spring' 카테고리의 다른 글
Spring/Jsp 사용설정 (0) | 2022.10.24 |
---|---|
[튜토리얼] 의존성 주입(3) XML (0) | 2022.09.14 |
[튜토리얼] 의존성 주입(1) 컴포넌트 스캔 (0) | 2022.09.07 |
[튜토리얼] springboot에 데이터베이스(h2) 연결하기(2) (0) | 2022.09.01 |
[튜토리얼] springboot에 데이터베이스(MySql) 연결하기(1) (0) | 2022.08.31 |
Comments