1. html - Spring Boot 에서 지원하는 <span> 태그 옵션
"text-white" : 글자 색 흰색
"mx-2" : x 축으로 여백 2만큼
"my-2" : y 축으로 여백 2만큼
2. Spring Security 를 사용하여 로그인 여부 판단하기 - 로그인 여부에 따라 사용할 수 있는 옵션 정하기
sec:authorize="isAuthenticated()" // 로그인이 된 경우
sec:authorize="!isAuthenticated()" // 로그인이 되지 않은 경우
// pom.xml에 설정 해줘야 하는 디펜던시
<dependency>
<groupId>org.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-springsecurity5</artifactId>
</dependency>
* 백준 단계별로 풀기 1단계 14문제
(2557, 1000, 1001, 10998, 1008, 10869, 10926, 18108, 3003, 10430, 2588, 10171, 10172, 25083)
https://notorious.tistory.com/116
* 백준 단계별로 풀기 2단계 7문제
(1330, 9498, 2753, 14681, 2884, 2525, 2480)
https://notorious.tistory.com/117
'Daily Trainning' 카테고리의 다른 글
2022-12-25 Sun [백준_단계별로 풀어보기, 정보처리기사 필기] (0) | 2022.12.25 |
---|---|
2022-12-24 Sat [백준_단계별로 풀어보기, 정보처리기사 필기] (0) | 2022.12.24 |
2022-12-23 Fri [백준_단계별로 풀어보기] (0) | 2022.12.23 |
2022-12-20 Tue [Spring Boot (Security), 포트 주소가 서로 달라서 생기는 오류] (0) | 2022.12.20 |