문제 successhandler 또는 failurehandler 또는 deniedhandler 에 걸쳐서 한글 데이터를 response 할 시 참고 하시기 바랍니다. 한글이 나와야 하는 부분에 ??? 로 처리가 되고 있다면 해당 글을 보고 처리 해보시길 바랍니다. Form 형식 Post - redirect시 한글 깨짐 문제 해결방법 AuthenticationFailureHandler에서 error에 대한 메세지를 경우에 따라 적용하였는데, 해당 값이 URL 파라미터 값으로 넘어 가면 한글이 ???? 처리가 되었음. 해당 부분을 처리 하기위해 URLEncoder클래스의 encode 메소드를 사용하여 처리를 하였음. @Component public class CustomAuthenticationFailure..
현상 IDE에서 WAS로 넘겼을 때 아래와 같이 문제가 발생함. 해결방법 아래 사진과 같이 application.yml 파일에 한 줄 코드를 추가고 다시 run해주면 된다. application 뒤에 확장자명?이 다르다면 쉬프트+f6 눌러서 변경 해주면 된다. server.servlet.encoding.force-response: true 결과
현상 SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details. JDBC에 connection 하다 보면 위와 같은 오류가 뜨는데 이러한 문제를 찾기위해 여러 곳을 Search를 하다가 dependancy로 추가를 하면 된다는 글을 보고 다시 정리하게 되었음. 해결방법 https://mvnrepository.com/artifact/org.slf4j/slf4j-simple/1.6.1 위의 링크에..