ajax重复的key,如何使用Keycloack验证Jquery ajax请求,

我有一个弹簧启动应用程序(mvc),它使用keycloack进行保护。 (使用spring-boot-starter-security和keycloak-spring-boot-starter)

我像这样配置了KeycloakWebSecurityConfigurerAdapter;

@Override

protected SessionAuthenticationStrategy sessionAuthenticationStrategy() {

return new RegisterSessionAuthenticationStrategy(new SessionRegistryImpl());

}

@Override

protected KeycloakAuthenticationProvider keycloakAuthenticationProvider() {

return this.tybsKimlikSaglayici;

}

@Override

protected void configure(HttpSecurity http) throws Exception {

super.configure(http);

http.cors().and().authorizeRequests().antMatchers("/",

"/home").permitAll().antMatchers("/admin").permitAll()

.anyRequest().authenticated().and()

.logout()

.logoutRequestMatcher(new AntPathRequestMatcher("/sso/logout")).permitAll();

http.exceptionHandling().accessDeniedPage("accessDeniedPage");

}

@Bean

public CorsConfigurationSource corsConfigurationSource() {

final CorsConfiguration configuration = new CorsConfiguration();

configuration.setAllowedOrigins(ImmutableList.of("*"));

configuration.setAllowedMethods(ImmutableList.of("HEAD",

"GET", "POST", "PUT", "DELETE", "PATCH"));

configuration.setAllowCredentials(true);

configuration.setAllowedHeaders(ImmutableList.of("Authorization", "Cache-Control", "Content-Type"));

final UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();

source.registerCorsConfiguration("/**", configuration);

return source;

}

请求控制器方法,响应html视图正常工作(keycloack验证请求)

但是,

形成对控制器方法的动作

Ajax请求休息控制器方法不起作用(post,put,delete .. requests)

我将@CrossOrigin(originins =" *")添加到我的控制器。

这是我的ajax要求,

$.ajax({

type : "method_here",

contentType : "application/json; charset=utf-8;",

url : "url_here",

data : JSON.stringify(data),

timeout : 30000,

success : function(response) {

},

error : function(error) {

}

});

这里是keycloack客户端

这里是kecloack json(我试过app.properties文件)

{

"realm": "demo-realm",

"auth-server-url": "url_of_sso_app",

"ssl-required": "external",

"resource": "kie-remote",

"principal-attribute": "preferred_username",

#"enable-cors": true, **tryed to add**

#"cors-max-age" : 10000,

#"cors-allowed-methods": "GET, POST, PUT, HEAD, OPTIONS",

#"cors-allowed-headers": "Origin, Accept, X-Requested-With, Content-Type, Access-Control-Request-Method, Access-Control-Request-Headersl",

"credentials": {

"secret": "secret_of_realm_client"

}

}

我该如何解决这个问题。如何使用keycloack验证ajax请求帮助。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值