logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

git下载单个文件夹

1 看到网上说的Downgit,我根本打不开。。。2 Tortoisesvn,安装好后,svn check out 也报错the server does not support the HTTP/dav protocol咋改都不好使。。。3 在chrome浏览器上安装octo mate插件,然而并没有出现所谓的下载按钮。。4 最后试了gitzip插件。需要关注微信公众号才能下载git...

#git
springboot2.6.0 配置swagger3.0.0

使用springboot2.6.0后,配置swagger,不论是2.9.2还是3.0.0都报错,Failed to start bean ‘documentationPluginsBootstrapper需要在application.yml中配置mvc:pathmatch:matching-strategy: ant_path_matcher即可解决。

#java#spring boot
Java子类访问父类私有变量的思考

示例如下:父类User,包含私有变量name和money;以及两个构造函数和基本的getter方法。public class User {public User() {}public User(String name, int money) {this.name = name;this.money = money;}public String getName() {return name;

#java
Win10家庭版安装Docker和splash

我的系统是win10家庭版,没有专业版自带的hyper-v虚拟机服务,所以只能使用dockertools和virtualbox的组合。1 在Docker官网找到最新版本的dockertool提示要先登录再下载,所以要注册登录一下,这里需要翻墙验证,不然按钮无法点击。下载完毕后双击安装都没问题,最后一步提示是否安装硬件,要选择安装,不然就会安装失败。主要操作在Docker qui...

#docker
Python pytest测试

#!/usr/bin/env python# -*- coding:utf-8 -*-import itchatimport timedef func(x):return x+1def test_answer():assert func(3)==5#!/usr/bin/env python# -*- coding:utf-8 -*-import

#python#测试
Python微信

安装setuptool安装pip安装itchat微信把好友的消息返回给好友#! /usr/bin/env python#coding=gbkimport itchat@itchat.msg_register(itchat.content.TEXT)def print_content(msg):return msg['Text']itchat.auto_logi

#python#微信
到底了