Java Code Examples for org.springframework.security.web.authentication.logout.SimpleUrlLogoutSuccessHandler#setDefaultTargetUrl()
The following examples show how to use
org.springframework.security.web.authentication.logout.SimpleUrlLogoutSuccessHandler#setDefaultTargetUrl() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SecurityConfig.java From pizzeria with MIT License | 6 votes |
@Bean public LogoutSuccessHandler logoutSuccessHandler() { ContentNegotiationStrategy contentNegotiationStrategy = new HeaderContentNegotiationStrategy(); MediaTypeRequestMatcher jsonMediaTypeRequestMatcher = new MediaTypeRequestMatcher(contentNegotiationStrategy, MediaType.APPLICATION_JSON); jsonMediaTypeRequestMatcher.setUseEquals(true); LinkedHashMap<RequestMatcher, LogoutSuccessHandler> matcherToHandler = new LinkedHashMap<>(); matcherToHandler.put(jsonMediaTypeRequestMatcher, new HttpStatusReturningLogoutSuccessHandler()); DelegatingLogoutSuccessHandler delegatingLogoutSuccessHandler = new DelegatingLogoutSuccessHandler(matcherToHandler); SimpleUrlLogoutSuccessHandler simpleUrlLogoutSuccessHandler = new SimpleUrlLogoutSuccessHandler(); simpleUrlLogoutSuccessHandler.setUseReferer(true); simpleUrlLogoutSuccessHandler.setDefaultTargetUrl("/"); delegatingLogoutSuccessHandler.setDefaultLogoutSuccessHandler(simpleUrlLogoutSuccessHandler); return delegatingLogoutSuccessHandler; }
Example 2
Source File: AuthenticationHandler.java From blackduck-alert with Apache License 2.0 | 5 votes |
@Bean public SimpleUrlLogoutSuccessHandler successLogoutHandler() { SimpleUrlLogoutSuccessHandler simpleUrlLogoutSuccessHandler = new SimpleUrlLogoutSuccessHandler(); simpleUrlLogoutSuccessHandler.setDefaultTargetUrl("/"); simpleUrlLogoutSuccessHandler.setAlwaysUseDefaultTargetUrl(true); return simpleUrlLogoutSuccessHandler; }
Example 3
Source File: InsightsSecurityConfigurationAdapterSAML.java From Insights with Apache License 2.0 | 5 votes |
/** * used to initialize successLogoutHandler and it also redirect to insights * Application API when SSO logout is successful * * @return */ @Bean @Conditional(InsightsSAMLBeanInitializationCondition.class) public SimpleUrlLogoutSuccessHandler successLogoutHandler() { LOG.debug(" Inside successLogoutHandler ==== "); SimpleUrlLogoutSuccessHandler simpleUrlLogoutSuccessHandler = new SimpleUrlLogoutSuccessHandler(); simpleUrlLogoutSuccessHandler.setDefaultTargetUrl("/user/insightsso/logout"); simpleUrlLogoutSuccessHandler.setAlwaysUseDefaultTargetUrl(true); return simpleUrlLogoutSuccessHandler; }
Example 4
Source File: SAMLConfigurer.java From spring-security-saml-dsl with MIT License | 4 votes |
private SimpleUrlLogoutSuccessHandler successLogoutHandler() { SimpleUrlLogoutSuccessHandler logoutSuccessHandler = new SimpleUrlLogoutSuccessHandler(); logoutSuccessHandler.setDefaultTargetUrl("/"); return logoutSuccessHandler; }
Example 5
Source File: SAMLConfig.java From spring-boot-security-saml-samples with MIT License | 4 votes |
@Bean public SimpleUrlLogoutSuccessHandler successLogoutHandler() { SimpleUrlLogoutSuccessHandler handler = new SimpleUrlLogoutSuccessHandler(); handler.setDefaultTargetUrl("/"); return handler; }
Example 6
Source File: WallRideSecurityConfiguration.java From wallride with Apache License 2.0 | 4 votes |
@Override protected void configure(HttpSecurity http) throws Exception { RedirectStrategy redirectStrategy = new BlogLanguageRedirectStrategy(); SavedRequestAwareAuthenticationSuccessHandler successHandler = new SavedRequestAwareAuthenticationSuccessHandler(); successHandler.setRedirectStrategy(redirectStrategy); successHandler.setDefaultTargetUrl("/"); SimpleUrlAuthenticationFailureHandler failureHandler = new SimpleUrlAuthenticationFailureHandler("/login?failed"); failureHandler.setRedirectStrategy(redirectStrategy); SimpleUrlLogoutSuccessHandler logoutSuccessHandler = new SimpleUrlLogoutSuccessHandler(); logoutSuccessHandler.setRedirectStrategy(redirectStrategy); logoutSuccessHandler.setDefaultTargetUrl("/"); // @formatter:off http.antMatcher("/**") .authorizeRequests() .accessDecisionManager(accessDecisionManager) // .expressionHandler(securityExpressionHandler) .antMatchers("/settings/**").hasRole("VIEWER") .antMatchers("/comments/**").hasRole("VIEWER") .and() .formLogin() .loginPage("/login").permitAll() .loginProcessingUrl("/login") .successHandler(successHandler) .failureHandler(failureHandler) .and() .logout() .logoutRequestMatcher(new AntPathRequestMatcher("/logout", "GET")) .logoutSuccessHandler(logoutSuccessHandler) .and() .rememberMe() .tokenRepository(persistentTokenRepository) .and() .headers() .frameOptions().disable() .cacheControl().disable() .httpStrictTransportSecurity().disable() .and() .csrf() .disable() .exceptionHandling() .accessDeniedPage("/login"); // @formatter:on }