您的位置:首页 > 游戏 > 游戏 > logo设计在线生成免费无水印不需要登陆_西安商城类网站制作_大连百度seo_百度一下你就知道了

logo设计在线生成免费无水印不需要登陆_西安商城类网站制作_大连百度seo_百度一下你就知道了

2025/1/15 17:39:18 来源:https://blog.csdn.net/xiaogang1226/article/details/142976856  浏览:    关键词:logo设计在线生成免费无水印不需要登陆_西安商城类网站制作_大连百度seo_百度一下你就知道了
logo设计在线生成免费无水印不需要登陆_西安商城类网站制作_大连百度seo_百度一下你就知道了

按照指定功能模块名称分组

  • 一、说明
            • 1.现在有一个需求:
            • 2.具体做法
  • 二、代码案例
  • 三、效果展示

一、说明

1.现在有一个需求:

需要把一个功能模块的几个功能点放在同一个文档目录下,这几个功能点分布在不同的 Controller

2.具体做法

需要把他们单独分组,方便前端对接。在@ApiOperation 里面增加属性 tags 赋值

注意:接口可以在同一个Controller,也可以不在同一个Controller

二、代码案例

@Api(tags = "测试日期格式化")
@Slf4j
@RequestMapping("/test8Controller")
@RestController
public class Test8Controller {@ApiOperation(value = "查询8实体信息",tags = {"查询API"})@GetMapping("/test1")public TestDateTimeFormat test1(){TestDateTimeFormat testDateTimeFormat = new TestDateTimeFormat();testDateTimeFormat.setName("xiaogang");testDateTimeFormat.setPhoneNumber("111111111111");testDateTimeFormat.setAddress("beijing");testDateTimeFormat.setBirthday(new Date());return testDateTimeFormat;}@ApiOperation(value = "新增实体信息")@PostMapping("/test2")public void test2(@RequestBody TestDateTimeFormat testDateTimeFormat){log.info("实体类:{}",testDateTimeFormat);// 实体类:TestJsonFormat(name=小明, address=北京市, phoneNumber=123456789, birthday=Thu Oct 10 14:42:20 CST 2024)}}
@Api(tags = "测试TestJsonFormat日期格式化")
@Slf4j
@RequestMapping("/test7Controller")
@RestController
public class Test7Controller {@ApiOperation(value = "查询7实体信息",tags = {"查询API"})@GetMapping("/test1")public TestJsonFormat test1(){TestJsonFormat testJsonFiled = new TestJsonFormat();testJsonFiled.setName("xiaogang");testJsonFiled.setPhoneNumber("111111111111");testJsonFiled.setAddress("beijing");testJsonFiled.setBirthday(new Date());return testJsonFiled;}@RequestMapping("/test2")public void test2(@RequestBody TestJsonFormat testJsonFormat){log.info("实体类:{}",testJsonFormat);// 实体类:TestJsonFormat(name=小明, address=北京市, phoneNumber=123456789, birthday=Thu Oct 10 14:42:20 CST 2024)}}

三、效果展示

在这里插入图片描述

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com