Home > Mobile >  No 'Access-Control-Allow-Origin' header is present on the requested resource.[ReactJS-Axio
No 'Access-Control-Allow-Origin' header is present on the requested resource.[ReactJS-Axio

Time:11-17

When I make a request from Postman, I get an error, but when I make a Post request from a React page, I get an error. I am not using Spring Security.

Access to XMLHttpRequest at 'http://localhost:8080/api/createData' from origin 'http://localhost:3001' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.

React axios code:

return axios.post("http://localhost:8080/api/createData", {
            name: 'Michael'
          });

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.7.5</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example</groupId>
    <artifactId>test1</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>test1</name>
    <description>Test1 project for Spring Boot</description>
    <properties>
        <java.version>17</java.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web-services</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <excludes>
                        <exclude>
                            <groupId>org.projectlombok</groupId>
                            <artifactId>lombok</artifactId>
                        </exclude>
                    </excludes>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

Cotroller class for Request:

import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/api")
public class Tutorial {

  @PostMapping("/createData")
  public void createData(@RequestBody Data data) {
      System.out.println(data.getName());
  }
}

I did some research but couldn't figure it out. I get an error when requesting from postman. Why does the problem occur and how can I fix it?

CodePudding user response:

When I added the @CrossOrigin notation to the method in my RestController class, the problem was fixed.

@CrossOrigin
@PostMapping("/createData")
  public void createData(@RequestBody Data data) {
      System.out.println(data.getName());
  }

CodePudding user response:

You are getting the cors error due to different ports. It will not give CORS error if the protocol, host and port is the same. You can try to disable Same origin policy in chrome and try to open it. You can find more info here: https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS

  • Related