91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot中如何使用Swagger

發布時間:2021-08-03 14:36:04 來源:億速云 閱讀:237 作者:Leah 欄目:編程語言

這篇文章將為大家詳細講解有關SpringBoot中如何使用Swagger,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

項目結構

SpringBoot中如何使用Swagger

  1. 配置文件

    @Configuration
    @EnableSwagger2
    public class Swagger2Config {
        //swagger2的配置文件,可以配置swagger2的一些基本的內容,比如掃描的包等等
        @Bean
        public Docket defaultApi(){
            return new Docket(DocumentationType.SWAGGER_2).apiInfo(apiInfo()).groupName("默認分組").select()
                    .apis(RequestHandlerSelectors.basePackage("com.chenwenhuan.springbootlearning.controller"))
                    .paths(PathSelectors.any()).build();
        }
    
        // 預覽地址:http://localhost:8082/swagger-ui.html#/
        private ApiInfo apiInfo() {
            return new ApiInfoBuilder()
                    .title("整合swagger構建測試系統api文檔")
                    .description("接口訪問地址:http://localhost:8082/")
                    .termsOfServiceUrl("http://localhost:8082/")
                    .version("1.0")
                    .build();
        }
    }


     

  2. pom.xml 新增依賴

            <dependency>
                <groupId>io.springfox</groupId>
                <artifactId>springfox-swagger2</artifactId>
                <version>2.7.0</version>
            </dependency>
            <dependency>
                <groupId>io.springfox</groupId>
                <artifactId>springfox-swagger-ui</artifactId>
                <version>2.7.0</version>
            </dependency>


     

  3. Controller注解

    @Api(value="用戶api", tags="用戶api")
    @RestController
    @RequestMapping("/user")
    public class UserController {
    
        @Autowired
        UserService userService;
    
        @GetMapping("/findAll")
        public List<User> findAll(){
            return userService.findAll();
        }
    
        @ApiOperation(value="獲取用戶信息", notes="根據url的id來獲取信息")
        @ApiImplicitParams({@ApiImplicitParam(name = "id", value = "用戶ID", paramType = "query",required = true)})
        @GetMapping("/getUser")
        public User getUser(@RequestParam int id){
            return userService.getUserById(id);
        }
    
        @PostMapping("/creatUser")
        public void creatUser(User user){
            System.out.println(user);
            userService.insert(user);
        }
    
        @PostMapping("/creatUserList")
        public void creatUserList(@RequestBody List<User> list){
            userService.insertList(list);
        }
    }


     

  4. 啟動項目訪問預覽地址  http://localhost:8082/swagger-ui.html#/,效果如下。(可以看出此處很多信息都源自配置Swagger2Config)SpringBoot中如何使用Swagger

  5. 示例1

SpringBoot中如何使用Swagger

輸入參數點擊Try it out!,可以查看返回碼和返回數據

SpringBoot中如何使用Swagger

  • 示例2:

參考右邊提示,按格式輸入Json格式的對象數組

SpringBoot中如何使用Swagger

  • 示例3:

controller需要注解 paramType = "query",否則需要按Example Value 格式輸入。required:是否必輸

@ApiImplicitParams({@ApiImplicitParam(name = "id", value = "用戶ID", paramType = "query",required = true)})

SpringBoot中如何使用Swagger

關于SpringBoot中如何使用Swagger就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

石阡县| 多伦县| 平远县| 芜湖县| 怀化市| 阳春市| 佛山市| 延津县| 襄城县| 德州市| 文安县| 玛曲县| 厦门市| 汽车| 泉州市| 沙湾县| 招远市| 安庆市| 蒙城县| 正安县| 蕲春县| 怀宁县| 吉林市| 同德县| 西平县| 博野县| 磐石市| 黄冈市| 克东县| 沽源县| 环江| 镇坪县| 隆回县| 武鸣县| 育儿| 弋阳县| 明光市| 西和县| 卫辉市| 德保县| 丰宁|