일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Kafka
- 플러터 개발
- 스프링공부
- 기술공부
- 스프링 공부
- 스프링부트공부
- nestjs
- nestjs스터디
- DDD
- 코테준비
- 스프링
- nestjs공부
- 카프카
- Axon framework
- JPA스터디
- querydsl
- 코테공부
- 스프링부트
- 플러터 공부
- 자료구조공부
- 기술면접공부
- 알고리즘공부
- JPA예제
- 자바공부
- K8S
- 프로그래머스
- JPA 공부
- JPA
- JPA공부
- Flutter
- Today
- Total
목록NestJS예제 (4)
DevBoi
우선 게시물에 대한 Entity를 아래와 같이 바꿨다. import { BaseEntity, Column, Entity, OneToMany, PrimaryGeneratedColumn, } from 'typeorm'; import { Record } from './record.entity'; @Entity() export class Board extends BaseEntity { @PrimaryGeneratedColumn() uid: number; @Column() title: string; @Column({ unique: true }) userId: string; @Column() nickname: string; @Column() password: string; } board.repository.ts i..
Id기준으로, 해당 게시물의 정보를 return 해주는것을 만들것이다. 배열에서, 해당 게시물의 id와 받은 id가 같은것을 return 해주는 메소드를 서비스에 넣었다. getBoardById(id: string) : Board{ return this.boards.find((board) => board.id == id); } 컨트롤러도 추가해주자 @Get('/:id') getBoardById(@Param('id') id :string): Board{ return this.boardService.getBoardById(id); } 이렇게 되면, id기준으로 정보를 가져올 수 있다. 테스트를 해보자 정보를 넣고, 전체를 가져오고 그리고 특정 게시물 ID로 해당 데이터를 가져오는 것까지 완료를 했다., 한가..
DTO는 뭐 알다싶이 데이터 전송객체이다. 클라이언트로의 값을 받거나, DB로 전달할때 주로 사용하는 객체이다. DTO - 데이터 유효성을 검증하는 데 효율적이고, 코드를 안정적으로 만들어주는 역할을 한다 (몰랐던 사람은 참고 ㅎ) * DTO를 만들어보자 이전 프로젝트를 보면, 파라미터로 해당 값들을 따로따로 한개씩 받는다. 말도안되는 짓이기 떄문에, DTO를 만들어서 DTO채로 받아보자 export class createBoardDto{ title: string; description: string; } 변경된 controller와 Service를 보자 import { Injectable } from '@nestjs/common'; import { Board, BoardStatus } from './b..
일단 로컬 데이터를 기반으로 컨트롤러, 서비스를 연결해보자 Controller import { Controller, Get } from '@nestjs/common'; import { BoardsService } from './boards.service'; @Controller('boards') export class BoardsController { constructor(private boardService: BoardsService){} @Get('') getAllBoard(){ return this.boardService.getAllBoards(); } } Service import { Injectable } from '@nestjs/common'; @Injectable() export class ..