개인 프로젝트/간단한 프로젝트

개인 프로젝트/간단한 프로젝트

react-spring social 동작 과정

https://github.com/callicoder/spring-boot-react-oauth2-social-login-demo 의 프로젝트를 참고하여 소셜로그인 과정을 정리해보았다. GitHub - callicoder/spring-boot-react-oauth2-social-login-demo: Spring Boot React OAuth2 Social Login with Google, Facebook, and Spring Boot React OAuth2 Social Login with Google, Facebook, and Github - GitHub - callicoder/spring-boot-react-oauth2-social-login-demo: Spring Boot React OAuth2 So..

개인 프로젝트/간단한 프로젝트

윈도우에서 cron으로 Java 파일 실행하기

실행할 자바 프로그램 실행할 프로그램은 1분마다 현재 시각을 알려주는 프로그램이다. import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; public class PrintTime { public static void main(String[] args) throws InterruptedException { LocalDateTime today = LocalDateTime.now(); String formatedNow = today.format(DateTimeFormatter.ofPattern("현재 시각: HH시 mm분 ss초")); System.out.println(formatedNow); } } 코드가 준비 되었다면 cmd ..

얌얌념념
'개인 프로젝트/간단한 프로젝트' 카테고리의 글 목록