목록Server/Spring Boot (5)
써먹는 웹개발
Spring Boot 에러 Whitelabel Error Page the request was rejected because the url contained a potentially malicious string ";" 해결방법입니다. WebSecurityConfigurerAdapter를 상속받은 파일에 16~24번줄 소스 추가 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 // ... import org.springframework.security.config.annotation.web.builders.WebSecurity; import org.springframework.security.web.firewall.DefaultHttp..
1. build path가 jre로 설정되어있는 경우 - jdk로 build path 변경후에 다시 받을 것 2. pom.xml이 에러났는지 확인할 것 - 에러났으면 수정후에 다시 Maven Update
에러메시지 : An exception occurred processing Appender LOG_FILE 현상 : 두개 주소에서 한개만 에러나면서 화면이 안뜸 원인 및 해결방법 : BOOT_INF에 배포파일이 없었음. 배포파일 추가
1. gradle 방식 - gradle에서 빌드 안될때 순서 1) 에러난 소스 제거 또는 수정 (ex. bootWar 설정 소스) 2) 프로젝트 clean 3) 환경(ex. 1.8)에 맞는 jar 설정 후에 Gradle Task > Run 2. maven 방식
로컬에서는 로그인할때 정상이었지만 운영서버 배포할때 401에러가 났었다. 1. 401에러가 났던 원인 - 401 에러 : 권한 없음 - https가 접근이 안되서 http로 접근했기 때문에 생긴 문제였다. 2. 해결한 방법 - https 접근이 가능하기 위해서 https TLS SSL를 적용하였다. 참고 : https://ayoteralab.tistory.com/entry/Spring-Boot-24-https-TLS-SSL-%EC%A0%81%EC%9A%A9%ED%95%98%EA%B8%B0 [Spring Boot] 24. https TLS SSL 적용하기 지금까지 만들어온 Spring Boot 프로젝트는 browser에서 http://localhost:port를 입력해서 접속을 했습니다. 이는 향후 정상적..