Spring MVC Rest API、跨域请求

发布于 2025-01-13 19:18:01 字数 2729 浏览 2 评论 0

Rest API

package net.wuxianjie.demo.controller;

import java.util.Date;
import net.wuxianjie.demo.dto.UserDto;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/users")
public class UserController {

  @GetMapping(value = "{id:\\d+}")
  public UserDto getUser(@PathVariable("id") Integer userId) {

    return new UserDto(userId, new Date(), "假名" + userId);
  }
}

GET http://localhost:8000/users/102
Accept: application/json

跨域请求

index.html

<!DOCTYPE html>
<html>
  <head lang="zh">
    <meta charset="UTF-8">
    <title>Test Index</title>
  </head>
  <body>
    <script type="text/javascript">
      fetch("http://localhost:8000/users/102").then(response => {
        response.json().then(data => console.log(data));
      });
    </script>
  </body>
</html>

方法一(手动):

package net.wuxianjie.demo.controller;

import java.util.Date;
import javax.servlet.http.HttpServletResponse;
import net.wuxianjie.demo.dto.UserDto;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/users")
public class UserController {

  @GetMapping(value = "{id:\\d+}")
  public UserDto getUser(@PathVariable("id") Integer userId, HttpServletResponse response) {

    response.setHeader("Access-Control-Allow-Origin", "*");

    return new UserDto(userId, new Date(), "假名" + userId);
  }
}

方法二(注解):

package net.wuxianjie.demo.controller;

import java.util.Date;
import net.wuxianjie.demo.dto.UserDto;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/users")
public class UserController {

  @CrossOrigin
  @GetMapping(value = "{id:\\d+}")
  public UserDto getUser(@PathVariable("id") Integer userId) {

    return new UserDto(userId, new Date(), "假名" + userId);
  }
}

方法三(全局配置):

app-context.xml

<mvc:cors>
  <mvc:mapping path="/users/**"/>
</mvc:cors>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

無心

暂无简介

文章
评论
25 人气
更多

推荐作者

最终幸福

文章 0 评论 0

与酒说心事

文章 0 评论 0

┈┾☆殇

文章 0 评论 0

梦醒灬来后我

文章 0 评论 0

念﹏祤嫣

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文