Questions tagged [spring-security-5]

4 questions
0
votes
1 answer

grails 5 spring security 5 403 error page is not shown

I am using grails 5.2.5 and spring security 5.6.0. When a 403 is occurred then the access deny message is written in the browser document.I want to show a 403 specific view page.But it is not working. My code as below: URL mapping: '403'(controller:…
Sumon Bappi
  • 1,937
  • 8
  • 38
  • 82
0
votes
0 answers

# sign is not working properly for URL access check in spring security 5

I am upgrading a project from grails 2.5.2 to grails 5.2.5 version. In previous version spring security 2 has been used. There URL access check start with # sign works fine. But in upgrading version, the same URL check is returning true although the…
Sumon Bappi
  • 1,937
  • 8
  • 38
  • 82
0
votes
0 answers

Spring Authorization Server with AuthorizationGrantType.PASSWORD

I am new to Spring Security, but somehow I implemented Spring security in my application. Now further there is requirement to create a custom Authorization server with Grant Type - Password. Please provide me any link with Authorization Server…
0
votes
0 answers

Spring Security 5 Oauth 2 Login Working but Form Login throw Request method 'POST' not supported

I am trying to implement social login along with form login in spring security 5. Google oauth is working fine but form login is throwing error below is my security config file: @Configuration @EnableWebSecurity public class SecurityConfig { …