精选圈子榜单优站
Nemo
Nemo
管理员
路漫漫其修远兮,吾将上下而求索。

最新文章

【转】hash算法 (hashmap 实现原理) Java实现的散列表
【转】hash算法 (hashmap 实现原理) Java实现的散列表

1.HashMap的数据结构 数组的特点是:寻址容易,插入和删除困难;而链表的特点是:寻址困难,插入和删除容易。那么我们能不能综合两者的特性,做出一种寻址容易,插入删除也容易的数据结构?答案是肯定的,

  • 2016-12-20
  • 1607阅读
Ubuntu 下WPS不能输入中文问题解决
Ubuntu 下WPS不能输入中文问题解决

Ubuntu 下自带的LibreOffice实在用不惯,所以一般都是用的wps做替代。不过有时会发现无法输入中文。在网络上搜索了下,找到如下解决方法:nemo@Cynthia:~$ sudo vim

  • 2016-12-09
  • 3325阅读
ajaxfileupload-jQuery.handleError is not a function修复办法
ajaxfileupload-jQuery.handleError is not a function修复办法

jQuery.handleError is not a function 报错原因是:1.handlerError只在jQuery-1.4.2之前的版本中存在,jQuery-1.4.2之后的版本中都没

  • 2016-12-07
  • 4372阅读
Ant: Class not found: javac1.8
Ant: Class not found: javac1.8

许久不用Ant了。今天在博客上准备换一种部署方式,忽然想到以前用的Ant,所以这里稍稍用了下。没想到,在选择build.xml,run as ant build后出错Ant: Class not fo

  • 2016-12-06
  • 4366阅读
Ubuntu16.04 安装 Gnome
Ubuntu16.04 安装 Gnome

好吧,其实我是Gnome党。Gnome桌面环境的软件包已经在Ubuntu16.04的源中,直接下载即可:nemo@Cynthia:~$ sudo apt-get install gnome-shell

  • 2016-12-06
  • 5264阅读
AspectJ报错:error at ::0 can't find referenced pointcut XXX
AspectJ报错:error at ::0 can't find referenced pointcut XXX

今天在使用AspectJ进行注解切面时,遇到了一个错误。Exception in thread "main" org.springframework.beans.factory.BeanCreatio

  • 2016-12-05
  • 3263阅读
地址栏传参中文乱码
地址栏传参中文乱码

框架使用的SpringMVC,项目在本机(Linux)时,地址栏传参中文无影响。但是发布到服务器之后出现乱码。查看web.xml,发现其中已经添加了乱码过滤的处理:<filter> <filter-n

  • 2016-12-02
  • 1671阅读
Mysql 查询去除重复字段
Mysql 查询去除重复字段

select t1.*, count(distinct name) from table t1left join table2 t2 on t2.t1_id = t1.id group by name

  • 2016-12-02
  • 3901阅读
Mysql 5.7  this is incompatible with sql_mode=only_full_group_by
Mysql 5.7 this is incompatible with sql_mode=only_full_group_by

问题: which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql

  • 2016-12-02
  • 4133阅读
Ubuntu 16.04 安装RabbitMQ-Server
Ubuntu 16.04 安装RabbitMQ-Server

1、Ubuntu默认未添加Rabbit源,需要添加源nemo@Cynthia:~$ sudo vim /etc/apt/sources.list添加:deb http://www.rabbitmq.c

  • 2016-12-02
  • 4500阅读