// 스프링 시큐리티 의존성
implementation('org.springframework.boot:spring-boot-starter-oauth2-client')
    
@SpringBootApplication(exclude = SecurityAutoConfiguration.class) <= 이부분 추가

'spring boot > setting' 카테고리의 다른 글

.gitignore파일 제대로 동작하지 않는다면?  (0) 2023.11.13

.gitignore가 제대로 동작하지 않아서 ignore처리된 파일이 changed 파일에 계속 뜨는 경우

 


1.1 원인

.gitignore에 파일을 추가하기 전에 stage에 올라간 파일들이 캐시처리되어 기록이 남아있기 때문


1.2 해결

 

git rm -r --cached .
git add .
git commit -m "fixed untracked files"
git push origin 자신의 branch

 

👍 해결완료

'spring boot > setting' 카테고리의 다른 글

Spring Security 기본 로그인 화면 제거  (0) 2023.11.14

+ Recent posts