我正在使用Spring服务上的Ajax上传来开发一个上传功能。它在开发服务器上工作得很好,但是一旦在集成服务器上运行,它的配置类似于生产,需要跨平台调用,我就会感到恐惧。
XMLHttpRequest cannot load http://xxxxxxxxxx:7001/felixmetier/rest/upload/montants. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://yyyyyyy' is therefore
注意:我正在使用SpringBoot2.1.10和Keycloak 6.0.1,我希望我能够在web应用程序(MVC)启动时在基本身份验证和SSO之间做出选择。所以我第一次集成了Security + Keycloak和keycloak- Spring -boot-starter。
@SpringBootApplication
@EnableWebSecurity
public class KcApplication {
public static void main(String[] args) {
SpringApplication.run(KcApplication