springboot整合Quarz和swagger2

本文介绍了如何在SpringBoot项目中整合Swagger2来创建API文档,包括引入依赖、配置 Swagger2、添加注解及访问接口。同时,也展示了如何集成Quartz实现定时任务,包括配置定时任务、编写任务类和开启定时任务注解。通过这些步骤,开发者可以方便地管理和调度项目中的接口与定时任务。
摘要由CSDN通过智能技术生成

springboot整合Quarz和swagger2

1、整合swagger2使用步骤

1、1 maven引入依赖
<!--swagger-->
        <dependency>
            <groupId>com.spring4all</groupId>
            <artifactId>swagger-spring-boot-starter</artifactId>
            <version>1.9.1.RELEASE</version>
        </dependency>
        <!--好看的ui-->
        <dependency>
            <groupId>com.github.xiaoymin</groupId>
            <artifactId>swagger-bootstrap-ui</artifactId>
            <version>1.9.6</version>
        </dependency>
1、2 创建swagger2的配置类
@Configuration
public class SwaggerConfig {

    //获取Swagger2的实例对象Docket
    @Bean
    public Docket getDocket(){
        Docket docket = new Docket(DocumentationType.SWAGGER_2)
                         .groupName("335")
                         .apiInfo(apiInfo())
                         .select()
                         //设置哪些包下的类生产api接口文档
                         .apis(RequestHandlerSelectors.basePackage("com.yy.controlller"))
                         //设置哪些请求路径生产接口文档
                         .paths(PathSelectors.any())
                         .build()
                ;
        return docket;
    }
    private ApiInfo apiInfo(){
        Contact DEFAULT_CONTACT = new Contact("123", "http://www.jd.com", "2300316070@qq.com");
        ApiInfo apiInfo=new  ApiInfo("员工管理系统api接口", "员工管理系统api接口", "2.0", "http://www.baidu.com",
                DEFAULT_CONTACT, "Apache 2.0", "http://www.apache.org/licenses/LICENSE-2.0", new ArrayList<VendorExtension>());
        return apiInfo;
    }
}
1、3 开启swagger2的注解
@SpringBootApplication
@MapperScan(basePackages = {"com.yy.dao"}) //为dao的接口生产实现类
@EnableSwagger2//开启swagger2的注解。
public class Springboot03Application {
    public static void main(String[] args) {
        SpringApplication.run(Springboot03Application.class, args);
    }
}
1、4启动项目和访问

测试网址:http://IP:PORT/swagger-ui.html
在这里插入图片描述

1、5swagger常见注解
swagger2使用说明:
         @Api:用在类上,说明该类的作用
         @ApiOperation:用在方法上,说明方法的作用
         @ApiImplicitParams:用在方法上包含一组参数说明
         @ApiImplicitParam:用在@ApiImplicitParams注解中,指定一个请求参数的各个方面
            paramType:参数放在哪个地方
                 header-->请求参数的获取:@RequestHeader
                 query-->请求参数的获取:@RequestParam
                 path(用于restful接口)-->请求参数的获取:@PathVariable
                 body(不常用)
                 form(不常用)
             name:参数名
             dataType:参数类型
             required:参数是否必须传
             value:参数的意思
             defaultValue:参数的默认值
         @ApiModel:描述一个Model的信息(这种一般用在post创建的时候,使用@RequestBody这样的场景,请求参数无法使用@ApiImplicitParam注解进行描述的时候)
            @ApiModelProperty:描述一个model的属性

2、整合Quarz任务

2、1 在线解析定时

https://cron.qqe2.com/

2、2添加相关依赖
<!--定时任务的依赖-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-quartz</artifactId>
        </dependency>
2、3创建定时任务类
@Component
public class OrderQuarz {
    @Scheduled(cron="0/1 * * * * ?")
    public void orderCheck(){
        //select * from order where now()-createdate>=30
        //取消该订单。
        System.out.println("~~~~~~~~查看所有的订单是否有为支付的。~~~~~~~~~~~~~");
    }
}
2、4主启动类上开启定时任务的注解
@SpringBootApplication
@EnableScheduling //开启Quarz注解的驱动
public class SpringbootQuarzApplication {
    public static void main(String[] args) {
        SpringApplication.run(SpringbootQuarzApplication.class, args);
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

未来.....

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值