精选圈子榜单优站
编程综合
编程综合
技术
20关注
编程技术记录、分享 ,记录你的编程生活点点滴滴!

最新文章

[NodeJS]npm 的使用
[NodeJS]npm 的使用

安装 $ npm install express -g npm WARN checkPermissions Missing write access to /usr/local/lib /usr/lo

  • 2016-06-13
  • 4090阅读
[NodeJS]第一个服务器端程序
[NodeJS]第一个服务器端程序

$ vim firstServer.js 输入: var http = require('http'); http.createServer(function (request,response){

  • 2016-06-13
  • 4156阅读
[NodeJS]Ubuntu下部署nodejs环境
[NodeJS]Ubuntu下部署nodejs环境

有两种方式: 1、 $ sudo git clone https://github.com/nodejs/node.git $ sudo chmod -R 755 node $ cd node $ s

  • 2016-06-13
  • 4086阅读
Spring 3 --> Spring 4
Spring 3 --> Spring 4

1. Spring3:org.springframework.http.converter.json.MappingJacksonHttpMessageConverter Spring4:org.sp

  • 2016-05-16
  • 4228阅读
Jquery attr和prop
Jquery attr和prop

function mcheckAll(obj,parentid){ var mtarget = $('#'+parentid + " input[type='checkbox'] "); if(obj

  • 2016-05-09
  • 4190阅读
Ubuntu install  postgresql
Ubuntu install postgresql

After trying apt-get install postgresql-9.4, updating, trying again etc etc. It seems I can't instal

  • 2016-04-27
  • 3226阅读
IO流   字节流的两个顶层父类
IO流 字节流的两个顶层父类

IO流 输入流和输出流相对于内存设备而言. 将外设中的数据读取到内存中:输入 将内存的数写入到外设中:输出。 字符流的由来: 其实就是:字节流读取文字字节数据后,不直接操作而是先查指定的编码表。获取对

  • 2016-04-26
  • 1960阅读
Jpa常用注解小结
Jpa常用注解小结

JPA全称Java Persistence API.JPA通过JDK 5.0注解或XML描述对象-关系表的映射关系,并将运行期的实体对象持久化到数据库中。 JPA由EJB 3.0软件专家组开发,作为J

  • 2016-04-22
  • 1040阅读
is not null && != null
is not null && != null

平时经常会遇到这两种写法:IS NOT NULL与!=NULL。也经常会遇到数据库有符合条件!=NULL的数据,但是返回为空集合。实际上,是由于对二者使用区别理解不透彻。 默认情况下,推荐使用 IS

  • 2016-04-21
  • 4579阅读
其他类对象-Math-Runtime -System 类对象的使用
其他类对象-Math-Runtime -System 类对象的使用

其他类对象-Math类的使用: 例 package cn.itcast.p1.otherapi; public class Mat { public static void main(String[]

  • 2016-04-20
  • 1746阅读