![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbvC0Ji%2FbtshzmrF7k1%2FeLEuFGwToCuPMNIB3pqQT1%2Fimg.png)
스프링) SpringSecurity - 2) SecurityConfig 설정
·
자바 탐구
SecurityConfig 설정 IndexController package com.example.security1.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.ResponseBody; @Controller //View를 return public class IndexController { //localhost:8080/ //localhost:8080 @GetMapping({"","/"}) public String index() { // 머스테치 기본폴더 ..