首页 > 2015年01月27日 > 全部分享
springmvc编码问题
web.xml中加入 1 <filter> 2 <filter-name>encodingFilter</filter-name> 3 <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> 4 <init-param> 5 <param-name>encodin...
分类:编程语言   时间:2015-01-27 23:37:32    收藏:0  评论:0  赞:0  阅读:528
Camel概念【Exchange 】
Exchange An exchange in Camel is the message’s container during routing. (在camel中,exchange被当做路由交换的容器) An exchange also provides support for the various types of interactions betwee...
分类:其他   时间:2015-01-27 23:37:22    收藏:0  评论:0  赞:0  阅读:708
nginx反向代理
1. 操作系统 CentOS 6.4 x86_64 2.软件版本 Nginx 1.4.2 3.实验拓扑 注,实验拓扑见下文。 4.安装yum源 1 2 3 [root @nginx ~]# rpm -ivh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8...
分类:其他   时间:2015-01-27 23:37:12    收藏:0  评论:0  赞:0  阅读:644
Nginx的负载均衡方案详解
Nginx的负载均衡方案详解作者:chszs,转载需注明。博客主页:http://blog.csdn.net/chszsNginx的负载均衡方案有:1、轮询轮询即Round Robin,根据Nginx配置文件中的顺序,依次把客户端的Web请求分发到不同的后端服务器。配置的例子如下: http{ upstream sampleapp { server >; ...
分类:其他   时间:2015-01-27 23:36:22    收藏:0  评论:0  赞:0  阅读:499
WPF 中的 loaded 事件和 Initialized 事件
在 WPF 中, 控件有 Loaded 和 Initialized 两种事件. 初始化和加载控件几乎同时发生, 因此这两个事件也几乎同时触发. 但是他们之间有微妙且重要的区别. 这些区别很容易让人误解. 这里介绍我们设计这些事件的背景. (不仅适用于 Control 类, 同样在通用类如 FrameworkElement 和 FrameworkContentElement 类也适用.)...
分类:Windows开发   时间:2015-01-27 23:36:02    收藏:0  评论:0  赞:0  阅读:1374
关于层DIV自适应高度的问题总汇
我们先来看一个最普通的父层自适应子层高度的例子(通常来讲,布局时父层都是不设置高度的) .f{ width:200px; border:1px solid #000; padding: 25px; margin: 50px auto;} .z{ width:200px; height:200px; background:#000} 运行结果是这样的如下图所示...
分类:其他   时间:2015-01-27 23:35:52    收藏:0  评论:0  赞:0  阅读:555
【学习ios之路:UI系列】点击更换头像实现从相册读取照片和拍照两种功能
功能如下: 1.点击头像,提示选择更换头像方式①相册 ②照相. 2.点击相册,实现通过读取系统相册,获取图片进行替换. 3.点击照相,通过摄像头照相,进行替换照片. 4.如果摄像头,弹出框警告. 代码如下: 1.通过UIActionSheet对象实现提示功能 //创建对象 UIActionSheet *actionSheet = [[UIActionSheet all...
分类:移动平台   时间:2015-01-27 23:35:42    收藏:0  评论:0  赞:0  阅读:547
【 D3.js 选择集与数据详解 — 4 】 enter和exit的处理方法以及处理模板
绑定数据之后,选择集分为三部分:update、enter、exit。这三部分的处理办法是什么呢?本文将讲解其处理方法,以及一个常用的处理模板。1. enter的处理方法如果没有足够的元素,那么处理方法通常是使用append()添加元素。请看下面的代码: var dataset = [3, 6, 9]; var p = d3.select("body").selectAll("...
分类:Web开发   时间:2015-01-27 23:35:32    收藏:0  评论:0  赞:0  阅读:483
Mybatis开发总结
有了Hibernate的开发基础,上手MyBatis是非常快的。但是在实际应用中,还是遇到了一些问题。总结一下,分享出来: 1、使用插件“mybatisGenerator”生成的辅助代码  Example做组合查询,非常方便,如下: AfficheExample example = new AfficheExample(); Criteria cri = example.createC...
分类:其他   时间:2015-01-27 23:35:22    收藏:0  评论:0  赞:0  阅读:604
LeetCode --- 1. Two Sum
题目链接:[Two Sum](https://oj.leetcode.com/problems/two-sum/ )Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of th...
分类:其他   时间:2015-01-27 23:35:12    收藏:0  评论:0  赞:0  阅读:566
Qpython : 如何上传自己写的脚本
现在开始用 Qpython , 发现装起来也方便。 点击右上角的菜单图标(三点): 出现设置对话表单,选FTP服务, 启动FTP服务. 如何上传自己写的脚本, 在Windows上用 upload.py...
分类:编程语言   时间:2015-01-27 23:34:52    收藏:0  评论:0  赞:0  阅读:869
SecureCRTP配置几个小技巧
原文来自:http://blog.csdn.net/lili72   lili72 背景:由于在lunix上操作,最常用的是secureCRT,现在把这个工具,基本常用方式记录一下。     一:  设置直接跳到跳板机,不要再次ssh 登陆。A--B-->C  不用跳2次到达目的机,一次直接到达。 1  2  3 4 5 6  7  8    二:设置编辑器...
分类:其他   时间:2015-01-27 23:34:32    收藏:0  评论:0  赞:0  阅读:699
LeetCode --- 2. Add Two Numbers
题目链接:Add Two Numbers You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers a...
分类:其他   时间:2015-01-27 23:34:22    收藏:0  评论:0  赞:0  阅读:537
JVM那些事儿(二)——垃圾回收
这节小汪介绍一下jvm的垃圾回收机制,首先我们先提问: 1.为什么要有不同的垃圾算法 2.垃圾回收器要解决的终极目的是什么 3.小汪该如何选择自己的...
分类:其他   时间:2015-01-27 23:34:12    收藏:0  评论:0  赞:0  阅读:810
关于研发核心团队建设的一些思考
核心团队是什么?举一个简单的比喻,就如果把公司比作一棵大树,核心团队就是大树的枝干。寒冬来袭,树叶尽落,只要枝干还在,春天来的时候还会发芽。核心团队是公司发展壮大和东山再起的核心力量。核心团队建设的根本目的是为了留住人才,用好人才,特别是优秀人才。有篇文章写得很好:“很多企业经常犯的错误是业绩越差,越不给加工资,工资不涨,优秀的员工肯定要走,剩下的都是比较差的。即使做的再差,也要加工资,不过可以减...
分类:其他   时间:2015-01-27 23:34:02    收藏:0  评论:0  赞:0  阅读:423
cocos2d-x 3.2 之 三消类游戏——万圣大作战 (第四篇)
cocos2d-x 3.2 之 三消类游戏——万圣大作战 (第四篇)...
分类:其他   时间:2015-01-27 23:33:52    收藏:0  评论:0  赞:0  阅读:733
uboot 和linux 下flash 写入速度差异分析
韩大卫@吉林师范大学 2015.1.27.  转载请表明出处 ********************************************* uboot 和linux 下flash 的写入速度不一样, 主要原因是两者使用的延迟最小延时时间不一样. linux比较大. 原因如下: flash 芯片手册中有两个重要的时间参数: ...
分类:系统服务   时间:2015-01-27 23:33:42    收藏:0  评论:0  赞:0  阅读:547
LeetCode --- 3. Longest Substring Without Repeating Characters
题目链接:Longest Substring Without Repeating Characters Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters...
分类:其他   时间:2015-01-27 23:33:32    收藏:0  评论:0  赞:0  阅读:440
LeetCode --- 4. Median of Two Sorted Arrays
题目链接:Median of Two Sorted Arrays There are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)). 这...
分类:其他   时间:2015-01-27 23:33:22    收藏:0  评论:0  赞:0  阅读:339
LeetCode --- 5. Longest Palindromic Substring
题目链接:Longest Palindromic Substring Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longest palindromic ...
分类:其他   时间:2015-01-27 23:33:12    收藏:0  评论:0  赞:0  阅读:371
2044条   1 2 3 4 ... 103 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!