일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 카프카
- 스프링
- 코테공부
- DDD
- JPA
- Flutter
- 프로그래머스
- JPA스터디
- JPA예제
- 스프링부트
- Axon framework
- 플러터 공부
- nestjs
- 자료구조공부
- JPA 공부
- 알고리즘공부
- nestjs스터디
- JPA공부
- 자바공부
- K8S
- 기술공부
- 플러터 개발
- nestjs공부
- 코테준비
- Kafka
- 스프링 공부
- querydsl
- 스프링공부
- 스프링부트공부
- 기술면접공부
- Today
- Total
목록nestjs Example (2)
DevBoi
다대일 매핑은 한개의 객체와 여러개의 객체의 연관관계를 나타낸 객체 매핑이다. 쉽게 얘기하면 아래와 같다. 만약에 어떤 업체가 음식들을 등록한다고 가정했을떄, 해당 업체:푸드 는 1:N이다. 엔티티에서는 아래와 같이 정의가 가능하다. @JoinColumn() @ManyToOne(() => Corp, (corp) => corp.foods) corp : Corp; //업체 매핑 업체는 프라이머리키를 표현해서 아래와 같이 또 표현 가능하다. @OneToMany(() => Food, (food) => food.corp) foods: Food[] 그러면 이때 CRUD로직은 어떻게 변하는지 확인해보자 우선 해당 관련 controller ~ repoistory를 작성할 것이다. 완벽한 설계다 라는 확신은 없는데, 우..
거지같던 레거시..가 아니고 내 코드를 좀더 바꿨다. (controller) import { Controller, Get, Post, Body, Patch, Param, Delete, UseGuards, Put, NotFoundException } from '@nestjs/common'; import { CorpService } from './corp.service'; import { JwtAuthGuard } from 'src/auth/auth-guard'; import { Corp } from './entities/corp.entity'; import { ApiTags, ApiOperation, ApiResponse, ApiQuery, ApiParam, ApiBody } from '@nestjs/sw..