1.接口和类 1.1 ISomeService 接口 1.2 SomeService类 1.3 MyAspect 类 2.xml文件 3.测试类 ...
分类:
Web程序 时间:
2017-08-20 10:16:51
阅读次数:
184
测试验证环境 数据: 7w+ 条,数据结构如下图: 机器配置: R version: R包性能对比 全局函数及参数设置 ## 全局设置 remove(list=ls()) space_path <- c("E:\\RScore\\kmeans\\") setwd(space_path) Sys.se ...
分类:
编程语言 时间:
2017-08-19 00:53:12
阅读次数:
534
定义函数的两种常见的方法: 1 . 函数声明 2. 函数表达式 # 差异 (1)函数声明 ,具有函数声明提升的特征。 (2)函数声明的函数的name属性为函数的名称;使用函数表达式定义的函数在ES5中,name属性为空字符串,在ES6中为函数的名称。 # 函数声明提升 函数声明 函数表达式 # 注意 ...
分类:
Web程序 时间:
2017-08-16 13:17:53
阅读次数:
140
Astronomers often examine star maps where stars are represented by points on a plane and each star has Cartesian coordinates. Let the level of a star ...
分类:
其他好文 时间:
2017-08-16 09:57:13
阅读次数:
222
如果各位看官熟悉 Git 和 GitHub ,可与 Docker 做个类比,可更加容易理解 Docker 和 Docker Hub 及两者关系。 1. docker version 显示 Docker 版本信息。 2. docker info 显示 Docker 系统信息,包括镜像和容器数。 3. ...
分类:
其他好文 时间:
2017-08-14 12:47:54
阅读次数:
158
快速处理办法: cat /etc/sysconfig/network-scripts/ifcfg-eth0 sed -i '/UUID/d' /etc/sysconfig/network-scripts/ifcfg-eth0 sed -i '/HWADDR/d' /etc/sysconfig/net ...
分类:
系统相关 时间:
2017-08-12 14:43:17
阅读次数:
204
Given a binary tree, return the tilt of the whole tree. The tilt of a tree node is defined as the absolute difference between the sum of all left subt ...
分类:
其他好文 时间:
2017-08-11 19:56:04
阅读次数:
123
Spring Boot是用来简化Spring应用的出事搭建以及开发过程。它的出现不是为已解决的问题域提供新的解决方案,而是简化Spring应用的创建、运行、调试和部署等。Spring Boot充分利用了JavaConfig的配置模式以及“约束优于配置”的理念,极大地简化基于SpringMVC的Web ...
分类:
编程语言 时间:
2017-08-11 12:25:50
阅读次数:
215
The Department of National Defence (DND) wishes to connect several northern outposts by a wireless network. Two different communication technologies a ...
分类:
Web程序 时间:
2017-08-10 19:31:26
阅读次数:
192
1. SqlSession使用范围 1.1 SqlSessionFactoryBuilder 通过SqlSessionFactoryBuilder创建会话工厂SqlSessionFactory 将SqlSessionFactoryBuilder当成一个工具类使用即可,不需要使用单例管理SqlSess ...
分类:
其他好文 时间:
2017-08-06 17:04:01
阅读次数:
186