목록전체 글 (435)
보라코딩

pom.xml org.springframework.boot spring-boot-starter-security 이렇게 의존성을 추가한 순간부터 모든 페이지를 들어가려 하면 로그인 화면으로 이동한다. (로그인 화면은 내가 만든게 아닌 기본 시큐리티에서 제공하는 화면임) SecurityConfig (스프링 시큐리티 설정하기) package com.shop.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.security.config.annotation.web.builders.HttpSecurity..
코딩/Spring
2023. 6. 5. 16:24

부트스트랩 이용해서 하트 이모티콘 만들었다 ㅎㅎ .border { border: 1px solid #dddddd; border-radius: 5px; padding: 5px; width: 37px; height: 37px; display: flex; justify-content: center; align-items: center; color: #8E48C7; } .border svg { width: 20px; height: 20px; fill: currentColor; }
코딩/Spring
2023. 6. 2. 17:55