일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 마이바티스
- Javascript
- 처음만나는자바스크립트
- 코딩
- springboot
- 구글캘린더api
- 리액트세팅
- 자바스크립트
- CSS
- 스프링부트
- 웹
- 리액트초기세팅
- 전자정부 서버세팅
- 기초 코딩
- 자바스크립트기초
- 자바
- react
- js
- 기초코딩
- 리액트프로젝트세팅
- 자바스크립트 기초
- java
- 자바스크립트기초문법
- 웹앱
- 구글 oauth
- javaspring
- spring
- Spring Boot
- HTML
- mybatis
- Today
- Total
목록springboot (2)
인생 디벨로퍼
코드 순서가 아닌, 실행순서 위주로 정리했습니다.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..
시큐리티, 스프링 업그레이드로 변경된 부분이 있어 정리해두려 함. 그래들 버전 디펜던시 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..