일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- vuejs #vue #js #프론트엔드 #nodejs #클라이언트사이드 #템플릿엔진
- C++
- 스프링부트
- GOF
- Dependency
- 스프링 메일
- 스프링 부트
- 스프링 스케줄러
- Spring Boot
- springboot
- spring scheduler
- 의존성관리
- java
- pair
- pom.xml
- codility
- list
- thymeleaf
- Arrays
- 프로젝트 구조
- @Scheduled
- Spring
- 코딩테스트
- HashMap
- maven
- Collections
- Spring Mail
- mybatis
- 스프링
- 프로그래머스
- Today
- Total
목록스프링 부트 (3)
Rooted In Develop
@Scheduled 사용법에 대해 소스 예제를 들어 설명하겠습니다. 1. @EnableScheduling 추가 1) @SpringBootApplication에 선언 package me.rooted.schedule; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.scheduling.annotation.EnableScheduling; @EnableScheduling @SpringBootApplication public class SpringSchedulerApplication { public s..
Spring Boot 프로젝트를 생성하며 많은 고민이 드는 것이 프로젝트 구조입니다. 어떻게해야 좋을지 모르겠다면, 이 글을 참고해주세요. 이 글에서는 크게 2가지의 구조를 설명드립니다. 1. 역할별로 묶기 - spring-boot-project - src/main/java - me.rooted └ SpringBootProjectApplication.java - me.rooted.config └ SwaggerConfig.java └ WebSecurityConfig.java - me.rooted.controller └ BoardController.java └ AccountController.java - me.rooted.domain └ BoardVO.java └ AccountVO.java - me.root..
Spring Boot 2.x 기준 Mail Send Client를 간단히 소개해봅니다. 기 프로젝트에 적용하실 분들은 1-2로, 신규 프로젝트로 진행하실 분들은 1-1로 봐주시면 되겠습니다.1-1. 프로젝트 생성 1-2. Maven dependency(pom.xml) 설정 org.springframework.boot spring-boot-starter-mail org.springframework.boot spring-boot-starter-thymeleaf 2. 프로젝트 구조 3. src/main/resources/application.properties 설정## thymeleaf default settingsspring.thymeleaf.prefix=classpath:/templates/spri..