반응형
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
- Kafka
- 스프링부트공부
- JPA예제
- 기술면접공부
- 스프링부트
- nestjs스터디
- 카프카
- 스프링공부
- nestjs
- JPA공부
- JPA
- 자바공부
- DDD
- JPA 공부
- 알고리즘공부
- 기술공부
- Flutter
- K8S
- 플러터 공부
- 자료구조공부
- 코테준비
- JPA스터디
- 스프링
- 프로그래머스
- nestjs공부
- 코테공부
- 스프링 공부
- querydsl
- Axon framework
- 플러터 개발
Archives
- Today
- Total
목록spring boot 구글 gmail (1)
DevBoi
[Spring] Smtp 서버 연동
필요에 의해서 알림을 메일로 전송해야하는 기능을 개발해야해서 gmail smtp 서버를 연동해보려고한다. 1. Google 보안 설정 진행 하기, 2단계 인증하기 https://myaccount.google.com/u/0/security?pli=1 Google 계정 myaccount.google.com 2. 앱 비밀번호 설정 3. 앱만들기를 하면 자동으로 비밀번호를 알려준다. 의존성 주입 implementation 'org.springframework.boot:spring-boot-starter-mail' 설정 파일 spring: mail: host: smtp.gmail.com port: 587 username: ${MAIL_USERNAME} password: ${MAIL_PASSWORD} propert..
Develop/[Spring]
2023. 11. 29. 22:09