亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

刚察县| 佛冈县| 井研县| 赣州市| 林周县| 灯塔市| 北安市| 锡林浩特市| 福安市| 靖州| 海伦市| 武山县| 镇雄县| 繁昌县| 久治县| 江源县| 光山县| 龙里县| 忻州市| 原阳县| 黄石市| 安吉县| 张家界市| 阿瓦提县| 蓬溪县| 波密县| 桂林市| 大新县| 清远市| 东阿县| 利津县| 如皋市| 大丰市| 西吉县| 阳山县| 莱州市| 工布江达县| 宝坻区| 泸州市| 黑河市| 巴马|