일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- js
- 리액트초기세팅
- 구글 oauth
- 자바
- Spring Boot
- spring
- 자바스크립트기초
- 자바스크립트기초문법
- 자바스크립트
- 처음만나는자바스크립트
- 웹
- java
- 코딩
- CSS
- springboot
- 기초 코딩
- javaspring
- Javascript
- react
- 리액트프로젝트세팅
- 리액트세팅
- 기초코딩
- 자바스크립트 기초
- 마이바티스
- 웹앱
- 스프링부트
- 전자정부 서버세팅
- HTML
- 구글캘린더api
- mybatis
- Today
- Total
목록JAVA Spring (14)
인생 디벨로퍼
코드 순서가 아닌, 실행순서 위주로 정리했습니다.1. 라이브러리 설정// Thymeleaf 사용, HTML 파일 기반 동적 콘텐츠 생성 가능implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'// XHTML 및 CSS를 기반으로 PDF를 생성할 수 있는 라이브러리. 내부적으로 iText 라이브러리를 사용implementation 'org.xhtmlrenderer:flying-saucer-pdf:9.9.5'2. 파일 저장 경로 설정 static String userDir() { String userDir = System.getProperty("user.dir").toString(); logger.in..

참고https://developers.google.com/calendar/api/quickstart/java?hl=ko 자바 빠른 시작 | Google Calendar | Google for Developers이 페이지는 Cloud Translation API를 통해 번역되었습니다. 의견 보내기 자바 빠른 시작 컬렉션을 사용해 정리하기 내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요. 빠른 시작에서는 Google Workdevelopers.google.com1. 기본 세팅client_secret 어쩌구 .json 파일을 src/main/resources/ 에 저장 =>파일명 credentials.json 변경 그래들 추가dependencies { implementation 'com.googl..

구글 캘린더 일정 불러오기 api 사용 전, 프로젝트 생성하고 키 받아오는 과정 단순 캡쳐 저장 글 입니다.https://console.cloud.google.com/welcome?project=delta-avenue-415801&pli=1 Google 클라우드 플랫폼로그인 Google 클라우드 플랫폼으로 이동accounts.google.com 위의 url 로 들어가, 프로젝트를 생성 한다. 캘린더 사용하기만들기 선택 후, 앱 url 잘 기입 여기 [승인된 리디렉션 URI] 이 나중에 oauth 로그인 인증 후, 콜백 해야하는 uri 다. 중요함요정도 기본 설정 해두고 시작!
시큐리티, 스프링 업그레이드로 변경된 부분이 있어 정리해두려 함. 그래들 버전 디펜던시 dependencies implementation "org.springframework.boot:spring-boot-starter-security" 지금 과정에서 테스트는 진행하지 않을 예정이라 추가하지 않음. SecurityConfig package com.jycoding.login.config; import jakarta.servlet.DispatcherType; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.s..