URI is not registered (Settings | Languages & Frameworks | Schemas and DTDs)

  • Post author:
  • Post category:其他

问题描述 用idea第一次写site配置文件 报错如下:URI is not registered (Settings | Languages & Frameworks | Schemas and DTDs) Cannot resolve symbol ‘http://maven.apache.org/xsd/decoration-1.8.0.xsd’ 原因分析: 统一资源标识符没有注册 …

继续阅读 URI is not registered (Settings | Languages & Frameworks | Schemas and DTDs)

Mac里如果Finder搜索不好使,或者png图片不显示尺寸,可以试试下面的这个命令

  • Post author:
  • Post category:其他

1.问题描述 如果你的Mac OSX下的finder查找不好使,比如查不到或者查的慢 或者png图片不能直接显示尺寸,不如200 x 200 可以试试下面的命令 2.命令 sudo mdutil -i off / sudo rm -rf /.Spotlight* sudo mdutil -i on / sudo mdutil -E / 3.总结 无意中查出来的,主要是最近开发时,看设计图和小图标都…

继续阅读 Mac里如果Finder搜索不好使,或者png图片不显示尺寸,可以试试下面的这个命令

IGP协议-EGP协议-RIP协议路由-水平分割-毒性逆转-RIP周期更新

  • Post author:
  • Post category:其他

IGP协议和RIP协议路由配置细节 一,IGP协议和EGP协议 1,IGP协议---内部网关协议(应用在AS内部的动态路由协议) 2,EGP协议---外部网关协议(应用在AS之间的动态路由协议) 3,IGP协议根据算法进行分类: (1)距离矢量型协议:贝尔曼.福特算法--之间传递路由条目信息--依据传闻的路由协议--RIP (2)链路状态型协议:SPF算--传递拓扑信息(LSA--链路状态通告)信…

继续阅读 IGP协议-EGP协议-RIP协议路由-水平分割-毒性逆转-RIP周期更新

The column KEY._col2:0._col0 is not in the vectorization context…

  • Post author:
  • Post category:其他

问题出现场景 shell脚本运行hql时报错: FAILED: SemanticException org.apache.hadoop.hive.ql.metadata.HiveException: The column KEY._col2:0._col0 is not in the vectorization context column map {KEY._col0=0, KEY._col1=…

继续阅读 The column KEY._col2:0._col0 is not in the vectorization context…

@RestControllerAdvice全局异常捕捉

  • Post author:
  • Post category:其他

自定义异常EbException public class EbException extends RuntimeException { private final String UNKOWN_ERROR = "unknown.error"; private String msg; private String errorDetail; private Integer errorCode = 10…

继续阅读 @RestControllerAdvice全局异常捕捉

php实现当前月份的前12个月(输出近一年的月份)

  • Post author:
  • Post category:php

1.获取当前月份近12个月(包含本月) 用到函数:date('Y-m',strtotime('-1month'));//本月的上一月,循环减就能得到近12个月份 A:反序输出 返回结果: Array ( [0] => 2020-10 [1] => 2020-09 [2] => 2020-08 [3] => 2020-07 [4] => 2020-06 [5] =>…

继续阅读 php实现当前月份的前12个月(输出近一年的月份)

微信小程序2

  • Post author:
  • Post category:小程序

WXML 模板语法 数据绑定 ①在 data 中定义数据 在页面对应的 .js 文件中,把数据定义到 data 对象中即可 ②在 WXML 中使用数据 把data中的数据绑定到页面中渲染,使用 Mustache 语法(双大括号)将变量包起来即可。 Mustache 语法的应用场景 绑定内容 // js Page({ data: { msg:'你好啊' }, }) // wxml <view&…

继续阅读 微信小程序2

Lambda表达式之::和->

  • Post author:
  • Post category:其他

Java 8 中我们可以通过 :: 关键字来访问类的构造方法,对象方法,静态方法。 class Something { Something() {} // static methods public static String startsWith(String s) { return String.valueOf(s.charAt(0)); } // object methods public …

继续阅读 Lambda表达式之::和->

第八章 第四节 Selenium Grid分布式执行测试用例之Selenium Grid 应用

  • Post author:
  • Post category:其他

1、多浏览器执行用例 相信读者心里一定藏着一个遗留问题,在前面介绍多线程的时候,只是提了一下利用多线程启动多浏览器执行一个测试用例,并没有把这个功能整合到我们的测试框架中。其实不是笔者不想整合进去,只是无力整合啊,如果既用多线程技术启动多个浏览器,同时又利用多线程技术执行测试用例,这个整合起来真的有一定的难度,同时测试报告也无法生成。 不过在学了 selenium server 之后,我们似乎找到…

继续阅读 第八章 第四节 Selenium Grid分布式执行测试用例之Selenium Grid 应用

VC 2010+MFC:CMFCVisualManager::GetInstance()导致的内存泄露 2012-2-15 10:18

  • Post author:
  • Post category:其他

VC 2010的MFC函数,CMFCVisualManager::GetInstance()可能导致内存泄露。对此,VC2010的MFC类库并没有作处理。 导致泄露的代码位置: \Program Files\Microsoft Visual Studio 10.0\VC\atlmfc\include\afxvisualmanager.h 的 484行。 static CMFCVisualManag…

继续阅读 VC 2010+MFC:CMFCVisualManager::GetInstance()导致的内存泄露 2012-2-15 10:18