김영한님의 인프런 스프링 강의 리뷰입니다. XD 스프링 빈을 등록하고 의존관계 설정하기 회원 컨트롤러가 회원서비스와 회원 리포지토리를 사용할 수 있도록 의존관계를 준비하자. "회원 컨트롤러에 의존관계 추가" package hello.hellospring.controller; import hello.hellospring.domain.Member; import hello.hellospring.service.MemberService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; @Controller public class MemberController {..
전체 글
경험들을 아카이빙합니다.알리고는 카카오톡, 문자 메시지를 보다 저렴한 가격으로 보낼 수 있는 알림 서비스입니다. 더보기 https://smartsms.aligo.in/?utm_source=google&utm_medium=cpc&utm_campaign=google_cpc&gclid=Cj0KCQjwspKUBhCvARIsAB2IYuuMRQdP6Vo-sSV94jUAyw7KePuUCcbr9pFc6VCVCvPFvXCnh9wo5JUaAiewEALw_wcB >> npm install aligoapi npm install로 알리고 api라이브러리를 설치해줍니다. 아래는 제가 작성한 예시코드 중 일부입니다. const aligoapi = require('aligoapi'); let type = req.params['type']; let upho..
>> git config --global user.name "사용자회원이름" >> git config --global user.email "사용자이메일" 나의 깃허브 회원정보를 입력하는 명령어입니다. >> git init >> git remote add origin 깃허브주소 git remote를 통해 프로젝트를 저장하고 싶은 주소를 연결해줍니다. >> git add . >> git commit -m "first commit" >> git pull origin main --allow-unrelated-histories >> git push origin main git commit을 통해 프로젝트를 올릴 수 있습니다. push 전에는 pull을 통해 프로젝트를 merge하는 과정이 필요합니다. --allo..
Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client 클라이언트가 서버로 api 요청을 보냈을 때 둘 이상의 응답을 리턴하면 생기는 오류입니다. exports.getLoginCheck = async (req, res, next) => { var email = req.body.email; var password = req.body.password; request( { url: url, method: 'POST', json: { email: email, password: password, login_type: 'EMAIL', fcm_token: 'FCM_TOKEN' }, }, function (error, res..