在Java中解决OAuth跨域问题通常需要在服务端配置跨域资源共享(CORS)策略。以下是一些解决方案:
@CrossOrigin(origins = "http://localhost:8080")
@GetMapping("/api/data")
public ResponseEntity<String> getData() {
// 返回数据
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http.cors().and().csrf().disable();
}
在application.properties中添加以下配置:
spring.mvc.cors.allowed-origins=http://localhost:8080
spring.mvc.cors.allowed-methods=GET,POST
在application.yml中添加以下配置:
spring:
mvc:
cors:
allowed-origins: http://localhost:8080
allowed-methods: GET,POST
通过以上方法配置跨域资源共享策略,可以解决Java OAuth跨域访问的问题。