error

    MariaDB "already has more than 'max_user_connections' active connections"

    SSAFY 에서 프로젝트를 진행할 때 겪었던 에러 입니다. java.sql.SQLSyntaxErrorException: (conn=65463) User "db_Name" already has more than 'max_user_connections' active connections와 같은 에러 내용이 실제 내용입니다. 상황 저희는 SSAFY에서 제공해주는 Maria DB 서버를 사용하기로 했습니다. 그래서 connection 설정을 하고 workbench를 이용해서 DB 테스트를 진행 하고 있었습니다. 그런데 팀원이 에러가 발생한다면서 에러를 보여주었는데 위와 같은 에러가 발생하고 있었습니다. 원인 원인은 에러가 보여주는 내용 그대로 최대로 DB에 접근할 수 있는 인원을 넘어간 것 이었습..

    [Spring Security] Spring Security 500 error page ( "status" : 999 )

    [Spring Security] Spring Security 500 error page ( "status" : 999 )

    spring security를 공부하면서 예제를 따라하고 있는데, 올바른 권한(USER)을 가진 계정으로 로그인을 시도했을때 위와 같은 json 메시지가 나타나는 페이지로 이동되는 오류가 발생했다. 권한에 맞지 않는 계정의 페이지로 이동하면 아래와 같이 403 에러가 나타남으로 권한을 잘 이해하고 있는 것 같았다. 그래서 구글링해보니 stackoverflow.com/questions/61029340/spring-security-redirects-to-page-with-status-code-999/61029341 Spring security redirects to page with status code 999 After successful login spring redirects to /error page..