Spring Security를 사용하여 로그인 정보를 Thymeleaf에서 출력하는 방법 1. 프로젝트 설정먼저 Spring Boot 프로젝트를 생성하고, 필요한 의존성을 추가합니다.build.gradle (또는 pom.xml)dependencies { implementation 'org.springframework.boot:spring-boot-starter-security' implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-web'} 2. Spring Security 설정로그인 및 인증 관련 설정을 ..