본문 바로가기
반응형

SpringBoot26

[SpringBoot] Thymeleaf - layout 적용하기 https://greed-yb.tistory.com/218#google_vignette [Spring] Bootstrap SB Admin 2 설치하기 https://greed-yb.tistory.com/209 [SpringBoot+IntelliJ+Oracle+Thymeleaf+Paging] 웹 게시판 만들기(1) - 구성 Java 17 Maven Spring Boot 3.0.3 Oracle 11g IntelliJ Ultimate DBeaver 간단한 CRUD 만 구현해 놓았으며 순서대로 만들면서 올 greed-yb.tistory.com 이전에 설치한 Bootstrap 에서 진행하였다 layout 사용이유 - 공통적으로 사용하는 코드 및 페이지를 선언만 해서 사용하기 위함. - 수정에 용이 Dependen.. 2024. 4. 21.
[SpringBoot] Scheduler(스캐줄러) 사용하기, cron 표현식 매일 또는 일정한 간격을 가지고 동작을 해야 하는 기능이 있을 때 사용 Project Application Class @EnableScheduling // Scheduler 를 사용하기 위한 어노테이션 @SpringBootApplication public class PracticeApplication { public static void main(String[] args) { SpringApplication.run(PracticeApplication.class, args); } } TestScheduler import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; imp.. 2023. 5. 14.
[SpringBoot] Security 로그인 인증, 인가(9) - 실행하기 이전글 https://greed-yb.tistory.com/230 [SpringBoot] Security 로그인 인증, 인가(8) - Controller 이전글 https://greed-yb.tistory.com/229 [SpringBoot] Security 로그인 인증, 인가(7) - html 이전글 https://greed-yb.tistory.com/228 [SpringBoot] Security 로그인 인증, 인가(6) - Service 이전글 https://greed-yb.tistory.com/227 [SpringBoo greed-yb.tistory.com 프로젝트 실행 localhost:9090 으로 접속하면 해당 주소에 대한 권한이 없기 때문에 /login 경로로 이동이 된다 회원가입 login.. 2023. 4. 30.
[SpringBoot] Security 로그인 인증, 인가(8) - Controller 이전글 https://greed-yb.tistory.com/229 [SpringBoot] Security 로그인 인증, 인가(7) - html 이전글 https://greed-yb.tistory.com/228 [SpringBoot] Security 로그인 인증, 인가(6) - Service 이전글 https://greed-yb.tistory.com/227 [SpringBoot] Security 로그인 인증, 인가(5) - Vo , Mapper 이전글 https://greed-yb.tistory.com/226 [Sp greed-yb.tistory.com UserController package com.example.practice.controller.login; import com.example.pract.. 2023. 4. 30.
[SpringBoot] Security 로그인 인증, 인가(7) - html 이전글 https://greed-yb.tistory.com/228 [SpringBoot] Security 로그인 인증, 인가(6) - Service 이전글 https://greed-yb.tistory.com/227 [SpringBoot] Security 로그인 인증, 인가(5) - Vo , Mapper 이전글 https://greed-yb.tistory.com/226 [SpringBoot] Security 로그인 인증, 인가(4) - AuthProvider 이전글 https://greed-yb.tistory.com/22 greed-yb.tistory.com Main 화면 : home login 화면 : loginPage 회원가입 화면 : signupPage 회원정보 수정 화면 : editPage 권한이 .. 2023. 4. 30.
[SpringBoot] Security 로그인 인증, 인가(6) - Service 이전글 https://greed-yb.tistory.com/227 [SpringBoot] Security 로그인 인증, 인가(5) - Vo , Mapper 이전글 https://greed-yb.tistory.com/226 [SpringBoot] Security 로그인 인증, 인가(4) - AuthProvider 이전글 https://greed-yb.tistory.com/225 [SpringBoot] Security 로그인 인증, 인가(3) - handler 이전글 https://greed-yb.tistory.com/224 [S greed-yb.tistory.com UserService package com.example.practice.service.user; import com.example.pract.. 2023. 4. 30.
반응형