- 浏览: 35527 次
- 性别:
- 来自: 上海
最新评论
-
xiaohuafyle:
...
查看端口占用情况 -
huaweiAt_888:
...
%type与%rowtype区别
文章列表
方便调试spark参数的python脚本
- 博客分类:
- Spark
# encoding:utf-8
__author__ = 'jwang'
import os
cmd_list = []
spark_submit = '/usr/local/datacenter/spark/bin/spark-submit'
cmd_list.append(spark_submit)
cmd_list.append('--class')
cmd_list.append('com.xx.xx.RBK')
cmd_list.append('--master')
cmd_list.append('yarn')
cmd_list. ...
MongoDB是什么
MongoDB的名字源自一个形容词humongous(巨大无比的),使用C++开发,是一个高性能(high-performance),可扩展(scalable),开源(open source)的文档型存储(document-Oriented Storage)的NoSQL数据库,它扩展了关系型数据库的众多功能,如辅助索引,范围查询和排序, MongoDB的功能非常丰富,比如内置的对MapReduce式聚合的支持,以及对地理空间索引的支持。
MongoDB的关键特性有哪些
1.丰富的数据类型
[1].MongoDB是面向文档的数据库, 不是关系型数据库, 放弃 ...
创建database
- 博客分类:
- SQL
create database `poi` default character set utf8 collate utf8_general_ci;
#启动firewall
systemctl start firewalld.service
#停止firewall
systemctl stop firewalld.service
#开机防火墙禁止启动
systemctl disable firew
public String byteTOString(byte[] src) {
int idx = 0;
for (idx = 0; idx < src.length; idx++) {
if (src[idx] == (byte) 0) {
break;
}
}
try {
return new String(src, 0, idx, "UTF-8");
} catch (Exception e) {
e.printStackTrace();
return new String(src, 0, idx);
...
java -classpath
- 博客分类:
- Java
java -classpath sina.jar;aura-connector.jar;commons-codec.jar;commons-httpclient-3.1.jar;commons-logging-1.1.jar;jackson-all-1.8.5.jar;joda-time-2.0.jar;junit-4.8.2.jar;log4j-1.2.16.jar com.weibo4j.AdvertiseUtils
1.在tomcat的conf文件下的web.xml增加
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/ob2</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</r ...
在linux下打包,windows下解包
- 博客分类:
- Linux
1.使用tar在linux下打包
压缩命令:tar -czvf test.tar.gz test/
可以在windows下用7z等解压使用。
基于小端规则的几个java方法
- 博客分类:
- Java
public static byte[] InttoByteArray(int n) {
byte[] b = new byte[4];
b[0] = (byte) (n & 0xff);
b[1] = (byte) (n >> 8 & 0xff);
b[2] = (byte) (n >> 16 & 0xff);
b[3] = (byte) (n >> 24 & 0xff);
return b;
}
public static byte[] ShorttoByteArray(short n) { ...
jsp页面实现倒计时自动跳转
- 博客分类:
- Jsp
在页面上显示倒计时
<script type="text/javascript">
function out(sec){
var v = document.getElementById("h1");
if(--sec>0){
setTimeout("out("+sec+")", 1000);
}
v.innerHTML=sec;
}
</script>
<body onload="out(6 ...
在之前接触过Hibernate,不太熟练并且一直很排斥它,认为其封装太多,不利于真正的掌握sql或数据库,又比较复杂繁琐, 一直没有很好的掌握它。最近项目要用到hibernate,没想到写了第一个例子,就出了N多错误, 随手记录一下。
1.配置Hibernate的连接池
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
" ...
1.df命令可以显示目前所有文件系统的可用空间及使用情形
[1].Command:df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/VolGroup00-LogVol00 20G 4.1G 15G 23% /
/dev/mapper/VolGroup00-data 242G 124G 116G 52% /data0
...
immdb2:9421 3.0T 503G 2.5T 17% /mnt/mfs
参数 -h 表示使用「Human-readable」的输出 ...
把中文转化为utf-8
native2ascii -encoding gb2312 ApplicationResources.properties ApplicationResources_zh_CN.properties