상황파악

Spring Boot Maven - Security 인증 일시 해제 본문

WEB/Spring Boot

Spring Boot Maven - Security 인증 일시 해제

otch80 2020. 7. 22. 19:17

Controller class에서 아래 코드를 입력한다

 

	@Override
	protected void configure(HttpSecurity http) throws Exception {
		http
		.csrf().disable()
		.headers().frameOptions().disable();
	}

 

'WEB > Spring Boot' 카테고리의 다른 글

Spring Boot Maven - Request 사용 로그인  (0) 2020.07.22
Spring Boot Maven - JSP 사용가능 환경 구축  (2) 2020.07.18