摘要:
1.本地单机部署hbase,想要使用独立zookeeper,不使用自带的 vim conf/hbase-env.sh export HBASE_MANAGES_ZK=false 设置不使用自带zookeeper,这一步设置完按理说就可以使用独立的zookeeper程序了,但是总是报错: Could 阅读全文
摘要:
public class Test{ public static void main(String[] args) { //int转换成Integer Integer in = new Integer(10); //Integer转换成int int i = in.intValue(); //String转... 阅读全文