当前位置: 首页 > news >正文

渭南市住房和城乡建设局网站网上开店平台有哪些

渭南市住房和城乡建设局网站,网上开店平台有哪些,erp软件销售,全达seoResponseBody 是SpringMVC框架中的一个注解#xff0c;将方法返回值转换为HTTP响应体内容 当 ResponseBody 注解应用在一个控制器方法上时#xff0c;SpringMVC会将该方法的返回对象#xff08;如Java对象、字符串或基本类型#xff09;通过MessageConverter转换为指定的媒… ResponseBody 是SpringMVC框架中的一个注解将方法返回值转换为HTTP响应体内容 当 ResponseBody 注解应用在一个控制器方法上时SpringMVC会将该方法的返回对象如Java对象、字符串或基本类型通过MessageConverter转换为指定的媒体类型如JSON、XML等然后直接写入HTTP响应体中而不是经过视图解析器查找和渲染视图。 使用样例 RESTful API开发 RESTful API开发在创建REST服务时通常需要将业务对象以JSON或其他格式发送给客户端。这时可以使用 ResponseBody 来直接返回对象框架会自动进行序列化。 返回基本数据类型 import org.springframework.web.bind.annotation.*;RestController public class CalculatorController {GetMapping(/calculate)ResponseBodypublic double addNumbers(RequestParam(num1) double num1, RequestParam(num2) double num2) {return num1 num2;} } 返回JSON格式数据 import org.springframework.web.bind.annotation.*;RestController public class ProductController {GetMapping(/products/{id})ResponseBodypublic Product getProduct(PathVariable Long id) {// 获取产品逻辑...Product product productService.findById(id);return product; // 返回的对象会被自动序列化为JSON并发送给客户端}PostMapping(/products)ResponseBodypublic Product createProduct(RequestBody Product newProduct) {// 创建产品逻辑...Product createdProduct productService.create(newProduct);return createdProduct; // 同样将返回的对象序列化为JSON响应体} } 返回字符串 import org.springframework.web.bind.annotation.*;RestController public class MessageController {GetMapping(/message)ResponseBodypublic String getMessage() {return Hello, World!; // 直接返回一个字符串它会作为HTTP响应体内容} }// 或者更复杂的动态生成的字符串 GetMapping(/dynamic-message) ResponseBody public String getDynamicMessage(RequestParam String name) {return Hello, name !; // 根据请求参数生成消息并作为响应体返回 } 返回自定义对象集合 import org.springframework.web.bind.annotation.*;RestController RequestMapping(/api/employees) public class EmployeeController {GetMappingResponseBodypublic ListEmployee getAllEmployees() {// 获取所有员工逻辑...ListEmployee employees employeeService.getAll();return employees; // 返回的员工列表会被转换为JSON并发送给客户端} }// 假设Employee类如下 public class Employee {private Long id;private String name;private String position;// 构造函数、getter和setter省略 }返回HTTP状态码及响应体 import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.*;RestController public class StatusController {GetMapping(/status/{code})ResponseBodypublic ResponseEntityString getStatus(PathVariable int code) {if (HttpStatus.resolve(code) null) {return ResponseEntity.badRequest().body(Invalid status code);}return ResponseEntity.status(code).body(Requested status code: code);} }返回分页数据 import org.springframework.data.domain.Page; import org.springframework.web.bind.annotation.*;RestController RequestMapping(/api/products) public class ProductController {private final ProductService productService;public ProductController(ProductService productService) {this.productService productService;}GetMapping(params {page, size})ResponseBodypublic PageProduct getProducts(RequestParam(page) int page, RequestParam(size) int size) {return productService.getProducts(page, size);} }返回异步处理并返回结果 import org.springframework.scheduling.annotation.Async; import org.springframework.web.bind.annotation.*; import java.util.concurrent.CompletableFuture;RestController public class AsyncController {AsyncGetMapping(/async-result)ResponseBodypublic CompletableFutureString getAsyncResult() {// 模拟耗时操作try {Thread.sleep(2000);} catch (InterruptedException e) {Thread.currentThread().interrupt();}return CompletableFuture.completedFuture(This is the result from an asynchronous operation);} }返回异步返回文件下载链接 import org.springframework.http.HttpHeaders; import org.springframework.http.MediaType; import org.springframework.http.ResponseEntity; import org.springframework.scheduling.annotation.Async; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController;RestController public class FileDownloadController {AsyncGetMapping(/generate-file)ResponseBodypublic FutureResponseEntityString generateFileAndReturnLink(RequestParam(filename) String filename) {// 模拟文件生成过程try {Thread.sleep(5000); // 模拟耗时操作} catch (InterruptedException e) {Thread.currentThread().interrupt();}// 假设fileService.generateFile(filename)返回的是文件存储路径String fileUrl fileService.generateFile(filename);HttpHeaders headers new HttpHeaders();headers.setContentType(MediaType.TEXT_PLAIN);return CompletableFuture.completedFuture(ResponseEntity.ok().header(HttpHeaders.CONTENT_DISPOSITION, attachment; filename\ filename \).header(HttpHeaders.LOCATION, fileUrl).body(The file has been generated. Download it from: fileUrl));} }与RestController配合使用 如果一个控制器类的所有方法都需要返回响应体内容而不是视图名那么可以将整个类标记为 RestController RestController Controller ResponseBody RestController RequestMapping(/api/users) public class UserController {GetMapping(/{id})public User getUser(PathVariable Long id) {// 不需要单独标注ResponseBody因为RestController已经提供了这个功能return userService.findById(id);} }
http://www.pierceye.com/news/987501/

相关文章:

  • 公司后台的网站代理维护更新商贸有限公司注销流程
  • 网站建设工作动态wordpress次元主题
  • 手机网站源码asp网站快速排名技巧
  • 站点怎么建网页宁波网站建设设计制作公司
  • 黑龙江企业网站建设网站模板带后台 下载
  • 徐州在线制作网站营销网络是什么意思
  • 上海网站建设seo公司微信小程序制作教学
  • 信息化工作总结 网站建设十堰市有几家网站公司
  • 宠物网站建站目标做外贸的网站哪些是最好的
  • 垂直型电商网站如何做html5 开发的网站
  • 做网站可以不做后端吗渭南网站建设网站排名优化
  • 在线建站网页制作网站建设平台工商营业执照官网
  • 做网站用到的软件h5交互设计
  • 化工废料网站建设企业网站建设联系电话
  • 浙江高端网站建设公司什么是网页开发
  • 石碣网站仿做模具做外贸网站
  • 定制网站建设成本制作公司宣传片
  • 青岛低价网站建设达内it教育官网
  • 洛阳设计网站公司个人网站管理系统
  • 怎么可以预览自己做的网站天津市城乡建设网站
  • 本地网站开发宁夏建设工程招标投标信息网站
  • 网站建设服务费怎么记账维护一个网站一年多少钱
  • 电子商务网站建设定位设想我的网站为什么打不开
  • 旅游网站开发方案ppt移动商城积分和积分区别
  • 如何做网站推广自己的产品WordPress+百度+主动
  • 商丘网站建设推广公司赣州seo唐三
  • 产品网站设计计算机专业做网站运营
  • 做平台网站怎么做的wordpress获取当前分类下的子分类
  • 广州网站建设性价比长安高端装备网站设计公司
  • 电子商务网站推广计划沈阳建设工程造价