疯狂小兵

向往自由,追求卓越! 阅读

CSS代码拾忆

CSS方式去掉滚动条,但元素能滚动 ::-webkit-scrollbar { width: 0px; } table消除td间隙 <table cellspacing="0" cellspacing="0"> 即在<table>上将属性cellspacing,cellspacing分别设置为0 超大的banner图居中显示 .banner...

Linux 基本命令操作

修改主机名 ## 长期修改,重启后有效 vim /etc/sysconfig/network #临时修改 hostname xxx 使得修改的环境变量生效 ## 使得系统环境变量生效 source /etc/profile ## 使得root用户下的环境变量生效 source /root/.bash_profile unzip 解压到指定目录 unzip -d /p...

Hadoop错误信息处理

1.找不到dfs.namenode.servicerpc-address 错误提示: Incorrect configuration: namenode address dfs.namenode.servicerpc-address or dfs.namenode.rpc-address is not configured. 错误原因: 未配置`fs.defaultFS`属性(2...

Hadoop代码拾忆

伪分布式运行hadoop自带Wordcount程序 [root@h2m1 ~]# hadoop jar /opt/local/hadoop271/share/hadoop/mapreduce/hadoop-mapreduce-examples-2.7.1.jar wordcount hdfs:///user/root/input hdfs:///user/root/output ...

启动QQ临时会话

1.从网页上发起qq临时会话 <!--网页启动qq临时对话--> <a href="tencent://message/?uin=1182696993&Site=&menu=yes" target="_blank"> <i class="fa fa fa-qq fa-lg" style="color:#16a095;"></i...

从零开始搭建spring-springmvc-mybatis-mysql和dubbo项目

一.准备开发环境 1.工具软件 JDK1.7+,Eclipse J2EE 最新版,mysql5.6,maven3.x,tomcat7+等必须软件 2.搭建maven项目开发环境 Eclipse从零配置Maven环境 笔记 现在搭建好的空的maven项目是这样的: 二.添加项目配置 1.配置项目的pom文件 内容如下: <project xmlns="http...

java知识点札记

1. 密码存储 密码加密存储并只保存密码的md5摘要 2. int和Integer默认值 int的默认值为0,而Integer的默认值为null 3.java 中添加跨域 HttpServletResponse response response.addHeader("Access-Control-Allow-Origin","*"); 4.只有非private方法才可以...

java排错

1.错误提示: org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: Error instantiating class com.skd.domain.User with invalid types () or va...

Google Java Style 中文版

基于官方文档2013.12.19最后一次改动。 翻译人:Weir Zhang (zh.weir) 旁白:水平有限,很多地方只是意译。不准确的地方,大家以原版文档为准。 原版地址:http://google-styleguide.googlecode.com/svn/trunk/javaguide.html 一、介绍 本文档为Google Java编程规范的完整定义。依照此规范编写的Ja...

git进阶经验

本经验如未明确说明,默认的命令操作位置为git bash,平台为windows7,操作位置为/c/user/{userHome} 1. 同一git客户端,配置不同git url的用户名和密码 1.1使用ssh-keygen 命名创建新的id_rsa和id_rsa.pub ssh-keygen -t rsa 会要求输入id_isa 的位置(输入新位置,避免不覆盖原来的id_rsa)...

  • 第22页 / 跳第 页 / 共26页
TOP