项目整合中的问题: 1、日志: spring5 不在使用org.springframework.web.util.Log4jConfigListener,不能配置log4j监听器,可以使用log4j2进行日志记录。 2、springmvc整合thymeleaf: 配置文件中添加<property n ...
分类:
其他好文 时间:
2020-09-17 21:02:44
阅读次数:
36
参考地址:https://blog.csdn.net/lll_liuhui/article/details/87923041 <template> <view class="scrool-page"> <view class="header-cont">头部</view> <view class=" ...
分类:
移动开发 时间:
2020-09-17 13:41:19
阅读次数:
109
function compare(property,desc) { return function (a, b) { var value1 = a[property]; var value2 = b[property]; if(desc==true){ // 升序排列 return value1 - ...
分类:
编程语言 时间:
2020-09-17 13:03:07
阅读次数:
38
Mybatis加载配置的流程 我们知道mybatis在ORM框架中具有举足轻重的地位,接下来几篇博客文章将对mybatis的原理和设计理念进行解析,会发现很多很多令人惊喜的设计和想法。 在mybatis的源码分析流程中,我大概分成四个模块:1、配置加载;2、映射绑定;3、执行操作,封装结果;4、插件 ...
分类:
其他好文 时间:
2020-09-17 12:24:31
阅读次数:
25
一、过程 1、修改配置文件 vim etc/hadoop/hdfs-site.xml <property> <name>dfs.datanode.data.dir</name> <value>file:///${hadoop.tmp.dir}/dfs/data1,file:///${hadoop.t ...
分类:
其他好文 时间:
2020-09-15 21:01:05
阅读次数:
37
问题 在使用echarts生成图表的时候,报错cannot read property 'querycomponents' of undefined 解决 通过跟踪代码发现是eModel.querycomponents中eModel为undefined,初步判断是eModel没有生成. 解决方法就是 ...
分类:
其他好文 时间:
2020-09-14 19:02:26
阅读次数:
97
@property装饰器 之前我们讨论过Python中属性和方法访问权限的问题,虽然我们不建议将属性设置为私有的,但是如果直接将属性暴露给外界也是有问题的,比如我们没有办法检查赋给属性的值是否有效。我们之前的建议是将属性命名以单下划线开头,通过这种方式来暗示属性是受保护的,不建议外界直接访问,那么如 ...
分类:
其他好文 时间:
2020-09-12 21:12:18
阅读次数:
28
1.测试类 public class MybatisTest { /** * 入门案例 * @param args */ public static void main(String[] args)throws Exception { //1.读取配置文件 InputStream in = Reso ...
分类:
其他好文 时间:
2020-09-09 19:18:26
阅读次数:
47
该控件是继承于 Control 基类开发的。 1 /// <summary> 2 /// 分割线控件 3 /// </summary> 4 [ToolboxItem(true)] 5 [Description("分割线控件")] 6 [DefaultProperty("Text")] 7 [Defa ...
准备工作 安装librdkafka 库 git clone https://github.com/edenhill/librdkafka.git ./configure make sudo make install 安装php-rdkafka 扩展 $ git clone https://githu ...
分类:
Web程序 时间:
2020-09-04 17:01:54
阅读次数:
69