0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

CORSに関するエラー

Posted at

エラー内容

Access to XMLHttpRequest at 'http://localhost:8080/todos/create'
from origin 'http://{IP}' has been blocked by CORS policy

翻訳

🗣️「おい、フロントは http://{ElasticIP} から来てるのに、バックエンド(API)は http://localhost:8080 にあるじゃん?
でもCORS(クロスオリジン)対策されてねーからブロックするわ!」

捕捉

バックエンドにCORS設定を追加

  • @Configuration クラスに許可してよいオリジンを追記する

コード例(※開発環境)

@Configuration
public class WebConfig {

    @Bean
    public WebMvcConfigurer corsConfigurer() {
        return new WebMvcConfigurer() {
            @Override
            public void addCorsMappings(CorsRegistry registry) {
                registry.addMapping("/**") // 全エンドポイントに適用
                        .allowedOrigins("http://HOSTNAME") // 許可するオリジン
                        .allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS") // OPTIONSも含む
                        .allowedHeaders("*")
                        .allowCredentials(true);
            }
        };
    }
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?