问题描述: springboot版本 2.1.1 pom.xml配置 <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifa ...
分类:
Web程序 时间:
2020-01-13 13:07:17
阅读次数:
88
今天在翻看netty的源码的时候发现netty对EventLoopGroup的实现有不止常用的NIOEventLoopGroup ,一共有以下几种。 EpollEventLoopGroup NioEventLoopGroup KQueueEventLoopGroup 其中NioEventLoopGr ...
分类:
编程语言 时间:
2020-01-13 12:30:27
阅读次数:
78
1 # 日志类的封装 2 import logging 3 from logging.handlers import RotatingFileHandler 4 from class_13_0111_rewrite_unittest.config_handle import do_config 5 ...
分类:
其他好文 时间:
2020-01-12 21:39:51
阅读次数:
64
发现一个API报了错: 一、HV000030: No validator报这个错,一般有两种情况:(1)约束与对象属性不匹配,譬如在String 上使用javax.validation.constraints.Future就会报这个错(2)真的是没有相关的Validator 一下子觉得很奇怪,难道j ...
分类:
编程语言 时间:
2020-01-12 18:31:19
阅读次数:
137
使用的是element-ui的upload插件。 <el-upload action="https://jsonplaceholder.typicode.com/posts/" list-type="picture-card" :on-preview="handlePictureCardPrevie ...
分类:
Web程序 时间:
2020-01-12 18:24:49
阅读次数:
96
需要加 viewer.addEventHandler(new osgGA::StateSetManipulator(viewer.getCamera()->getOrCreateStateSet())); 按w键可以切换显示模式。 其中viewer是osg::Viewer,区别于osg::view。 ...
分类:
其他好文 时间:
2020-01-12 14:59:12
阅读次数:
123
If you're using the NavigationService in Prism, for Xamarin.Forms or simply Xamarin, like this : 1 you might notice native crashes with no information ...
分类:
其他好文 时间:
2020-01-12 00:13:03
阅读次数:
85
在写 Python 项目的时候,我们可能经常会遇到导入模块失败的错误:ImportError: No module named 'xxx'或者ModuleNotFoundError: No module named 'xxx'。 导入失败问题,通常分为两种:一种是导入自己写的模块(即以 .py 为后 ...
分类:
编程语言 时间:
2020-01-11 20:04:53
阅读次数:
80
#region 暂停进程 //检测进程是否存在 public List<IntPtr> get_pressId(string pressName = "explorer") { List<IntPtr> list = new List<IntPtr>(); //获得进程ID Process[] pr ...
前言 前情回顾 上一讲主要看了@EnableFeignClients中的registerBeanDefinitions()方法,这里面主要是 将EnableFeignClients注解对应的配置属性注入,将FeignClient注解对应的属性注入。 最后是生成FeignClient对应的bean,注 ...
分类:
其他好文 时间:
2020-01-11 14:48:01
阅读次数:
207