- 浏览: 659060 次
- 性别:
- 来自: 杭州
最新评论
-
e_Inch_Photo:
这样配置之后,返回json数据直接报错:no convertt ...
Spring MVC3返回JSON数据中文乱码问题解决 -
BreakingBad:
表情图标表情图标http://www.iteye.com/im ...
文件下载(只需要简单的四步),Java中都通用 -
王庆波-行:
学习了,感谢分享
[oracle]windows 上 解决ORA-12560: TNS: 协议适配器错误 -
meigesir:
hy110912 写道不知道你从哪里抄来的 还是怎么样 报错 ...
SSH整合:使用DAO框架(BaseDao),DAO不写或少写,我们更加专注业务 -
hy110912:
不知道你从哪里抄来的 还是怎么样 报错都不知道 还令人兴奋 ...
SSH整合:使用DAO框架(BaseDao),DAO不写或少写,我们更加专注业务
文章列表
理解 Scroll Views
- 博客分类:
- IOS
转自:http://objccn.io/issue-3-2/
英文原文:http://www.objc.io/issue-3/scroll-view.html
解决方法见http://www.2cto.com/kf/201408/322258.html
iOS Push Notifications
- 博客分类:
- IOS
https://parse.com/tutorials/ios-push-notifications
http://www.raywenderlich.com/32960/apple-push-notification-services-in-ios-6-tutorial-part-1
同样一些可以借鉴的例子:https://parse.com/tutorials/
问题解决:在ViewDidLoad中添加这句:
if( ([[[UIDevice currentDevice] systemVersion] doubleValue]>=7.0)) {
self.edgesForExtendedLayout = UIRectEdgeNone;
}
参考:Building Java Projects with Maven
关键点:
1.代码结构
└── src
└── main
└── java
└── hello
2.pom的配置
可参考:
Introduction to the Standard Directory Layout
Oracle11g客户端安装及plsql配置
- 博客分类:
- Oracle
只是备忘Oracle11g客户端安装及plsql配置
在拦截器或过滤器中加入如下代码
在header中加入sessionstatus(ajax请求不要执行重定向sendRedirect)
/**------处理ajax请求----start---**/
if("XMLHttpRequest".equals(request.getHeader("X-Requested-With"))){
response.setHeader("sessionstatus", "timeout");
response.setHeader("r ...
linux启动项目的时候报这个相关的错误,
ERROR [main] Cache.<clinit>(202) | Unable to set localhost. This prevents creation of a GUID. Cause was: centos: centos
java.net.UnknownHostException: centos: centos
at java.net.InetAddress.getLocalHost(InetAddress.java:1374)
原因没有给自己的机器名称做映射,在hosts文件中将 ...
这篇博客只是随便记录一下,方便以后自己查看(主要配置toolbox.xml、velocity.properties加载):
1.struts中配置:struts.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dt ...
jar包有注解导出方式
- 博客分类:
- JavaEE
如果项目中有注解,导出的时候要注意了,一定要勾选"Add directory entries"复选框,如下图:
参考:http://www.oschina.net/question/913845_83398
Linux下的CPU利用率计算原理及实现
- 博客分类:
- centos
总的Cpu使用率计算计算方法:
1、 采样两个足够短的时间间隔的Cpu快照,分别记作t1,t2,其中t1、t2的结构均为:
(user、nice、system、idle、iowait、irq、softirq、stealstolen、guest)的9元组;
2、 计算总的Cpu时间片totalCpuTime
a) 把第一次的所有cpu使用情况求和,得到s1;
b) 把第二次的所有cpu使用情况求和,得到s2;
c) s2 - s1得到这个时间间隔内的所有时间片,即totalCpuTime = j2 - j1 ;
3、计算空闲时间 ...
linux awk命令详解
- 博客分类:
- centos
原文地址:http://www.cnblogs.com/ggjucheng/archive/2013/01/13/2858470.html
例如查看系统内存使用率:
free -m |awk 'NR==2{rate=$3/$2;print rate*100"%”}’
iOS7 UIPickerView doesn't properly display custom views with images
原文地址:http://stackoverflow.com/questions/19158319/ios7-uipickerview-doesnt-properly-display-custom-views-with-images
http://blog.csdn.net/zht666/article/details/8695908
用的是这一种方法:设置 @RequestMapping 的 produces 参数,代码如下所示:
思路:使用 @ResponseBody 注解直接返回json字符串,为了防止中文乱码,将@RequestMapping 的 produces 参数设置成"text/html;charset=UTF-8" 即可。