我正在 localhost:3000 上开发一个 REACT 应用程序,并在 localhost:8080 上运行一个 Spring Data Rest 后端。我发现了如何禁用特定 RestRepositories 的 CORS 策略,例如:
@CrossOrigin("*")
public interface EmployeeRepository extends PagingAndSortingRepository<Employee, Long> {
}
现在可以访问以下 URL:localhost:8080/api/employees
但是,我正在尝试对基本路径 url 本身执行 GET 请求:localhost:8080/api。这仍然被 CORS 策略阻止。我想禁用该 URL 上的 CORS 策略。
我找到了以下文档:https://docs.spring.io/spring-data/rest/docs/current/reference/html/#customizing-sdr.configuring-cors这适用于存储库本身,但没有结果在基本 URL 上。
任何想法都非常感谢。