• asdfsdfsdfd


    商户号:1651641213
    appKey: 
    appId: wxd72d78491b9fdce4
    v3key: Zhishidiqiu1234567890zhishidiqiu
    certificates_url: https://api.mch.weixin.qq.com/v3/certificates
    key_path: d:/apiclient_key.pem
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    在这里插入图片描述
    在这里插入图片描述

    https://github.com/dselegent/Learning-Notes/tree/master/react
    https://blog.csdn.net/weixin_44972008/category_11114770.html
    在这里插入图片描述
    在这里插入图片描述

    docker go client

    查看日志

    func (*Client) ContainerLogs ¶

    func (cli *Client) ContainerLogs(ctx context.Context, container string, options types.ContainerLogsOptions) (io.ReadCloser, error)
    
    • 1

    在这里插入图片描述

    ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
    defer cancel()
    
    client, _ := NewClientWithOpts(FromEnv)
    reader, err := client.ContainerLogs(ctx, "container_id", types.ContainerLogsOptions{})
    if err != nil {
    	log.Fatal(err)
    }
    
    _, err = io.Copy(os.Stdout, reader)
    if err != nil && err != io.EOF {
    	log.Fatal(err)
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    停止容器

    在这里插入图片描述
    在这里插入图片描述

    创建容器

    在这里插入图片描述

    go 异常捕获

    在这里插入图片描述

    自定义错误

    在这里插入图片描述
    还有一种情况,当出现错误,我想直接终止程序,怎么办?
    在这里插入图片描述
    在这里插入图片描述

    go 标准库

    https://pkg.go.dev/io@go1.19.4

    go 技术栈

    https://golang-tech-stack.com/tutorial/

    制作镜像

    https://blog.csdn.net/Jarbein/article/details/103627413

    knife4j

    3、knife4j
    文档地址:https://doc.xiaominfo.com/

    knife4j是为Java MVC框架集成Swagger生成Api文档的增强解决方案。

    3.1、Swagger介绍
    前后端分离开发模式中,api文档是最好的沟通方式。

    Swagger 是一个规范和完整的框架,用于生成、描述、调用和可视化 RESTful 风格的 Web 服务。

    1、及时性 (接口变更后,能够及时准确地通知相关前后端开发人员)

    2、规范性 (并且保证接口的规范性,如接口的地址,请求方式,参数及响应格式和错误信息)

    3、一致性 (接口信息一致,不会出现因开发人员拿到的文档版本不一致,而出现分歧)

    4、可测性 (直接在接口文档上进行测试,以方便理解业务)

    <dependency>
        <groupId>com.github.xiaoymingroupId>
        <artifactId>knife4j-spring-boot-starterartifactId>
    dependency>
    
    • 1
    • 2
    • 3
    • 4

    添加knife4j配置类

    import org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.Configuration;
    import springfox.documentation.builders.ApiInfoBuilder;
    import springfox.documentation.builders.ParameterBuilder;
    import springfox.documentation.builders.PathSelectors;
    import springfox.documentation.builders.RequestHandlerSelectors;
    import springfox.documentation.schema.ModelRef;
    import springfox.documentation.service.ApiInfo;
    import springfox.documentation.service.Contact;
    import springfox.documentation.service.Parameter;
    import springfox.documentation.spi.DocumentationType;
    import springfox.documentation.spring.web.plugins.Docket;
    import springfox.documentation.swagger2.annotations.EnableSwagger2WebMvc;
    
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * knife4j配置信息
     */
    @Configuration
    @EnableSwagger2WebMvc
    public class Knife4jConfig {
        @Bean
        public Docket adminApiConfig(){
            List<Parameter> pars = new ArrayList<>();
            ParameterBuilder tokenPar = new ParameterBuilder();
            tokenPar.name("token")
                    .description("用户token")
                    .defaultValue("")
                    .modelRef(new ModelRef("string"))
                    .parameterType("header")
                    .required(false)
                    .build();
            pars.add(tokenPar.build());
            //添加head参数end
    
            Docket adminApi = new Docket(DocumentationType.SWAGGER_2)
                    .groupName("adminApi")
                    .apiInfo(adminApiInfo())
                    .select()
                    //只显示admin路径下的页面
                    .apis(RequestHandlerSelectors.basePackage("com.atguigu"))
                    .paths(PathSelectors.regex("/admin/.*"))
                    .build()
                    .globalOperationParameters(pars);
            return adminApi;
        }
    
        private ApiInfo adminApiInfo(){
    
            return new ApiInfoBuilder()
                    .title("后台管理系统-API文档")
                    .description("本文档描述了后台管理系统微服务接口定义")
                    .version("1.0")
                    .contact(new Contact("atguigu", "http://atguigu.com", "atguigu@qq.com"))
                    .build();
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59

    在这里插入图片描述

  • 相关阅读:
    uniapp 小程序 多张图片生成海报以及下载海报
    配置与管理Samba服务器复习题
    李航《统计学习方法》笔记之朴素贝叶斯法
    当一个用户登录时,会引发哪些安全性的思考呢
    GUN介绍
    优思学院|六西格玛黑带大师MBB是什么?兩大认证比较
    linux下的文件重命名
    【学习笔记】windows 下的 shared memory(共享内存)
    [JS入门到进阶] 前端开发不能写undefined?这是误区!
    《信号量机制的实现和应用》操作系统 课程设计
  • 原文地址:https://blog.csdn.net/lhg_55/article/details/126844940