`
reason2003
  • 浏览: 91463 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论
文章列表
  EXtjs 下fieldset 与colum整合   var custInfoPanel = new Ext.FormPanel({ labelWidth: 75, // label settings here cascade unless overridden frame:true, items: [{ xtype:'fieldset', title: '基础信息', collapsible: true, autoHeight:true, layout:'form ...
有两种方法: 一种是在当个shell中设置,也就是说当你关闭设立了终端时,环境变量就失效了,export JAVA_HOME=/usr/local/lib/jdk1.7.0_25 一种是永久生效的, 以root身份用文本编辑器Vi,kedit,gedit打开/etc/profile文件,加入一行 path=%path:=/usr/local/lib/jdk1.7.0_25;export java_home 保存后 然后用env命令确定环境变量是否生效
1. Redis默认不是以守护进程的方式运行,可以通过该配置项修改,使用yes启用守护进程     daemonize no   2. 当Redis以守护进程方式运行时,Redis默认会把pid写入/var/run/redis.pid文件,可以通过pidfile指定     pidfile /var/run/redis.pid   3. 指定Redis监听端口,默认端口为6379,作者在自己的一篇博文中解释了为什么选用6379作为默认端口,因为6379在手机按键上MERZ对应的号码,而MERZ取自意大利歌女Alessia Merz的名字     port 6379   4 ...
      这两年Redis火得可以,Redis也常常被当作Memcached的挑战者被提到桌面上来。关于Redis与Memcached的比较更是比比皆是。然而,Redis真的在功能、性能以及内存使用效率上都超越了Memcached吗?      下面内容来自Redis作者在stac ...
   之前做一个项目,主程序打包成一个jar文件,因为用到了很多第三方的lib包,所以直接通过java命令运行jar比较烦琐,通过研究jar中的MANIFEST.MF文件,我们发现其中一个Class-Path属性,但这个属性值比较奇怪,不支持正则。所以要配置使用到的第三方包,必须明确相对路径和包名。如果手写MANIFEST.MF,工作量会比较大。幸好ant可以帮我们自动生成Class-Path属性。具体的请看下面的ant的执行脚本       第一步,定义一些属性       1 <!-- name of the output .jar file --> 2 & ...
http://wiki.apache.org/couchdb/Compaction     Database Compaction   Compaction compresses the database file by removing unused sections created during updates. Old revisions of documents are also removed from the database though a small amount of meta data is kept for use in conflict during repl ...
SSL enabled RESTful services are quite easier to develop and test using Jersey, Grizzly and RestTemplate. Jersey (resource development)Grizzly Web Server (resource configuration and deployment)Spring 3 RestTemplate backed by Commons HTTP Client (resource access) In a moment, you will notice how ...
原文见:http://thoughts.inphina.com/2011/03/07/testing-rest-with-grizzly/   In my last post, we had seen how easy it was to create REST based services with Spring and Jersey. In this post we would quickly see how we can unit test them. Ok, this is not entirely a unit test in the strict sense because we ...
    转至  http://topic.csdn.net/u/20090515/21/2b3c9a12-d8a5-4bb1-9895-6069cef5aef8.html     先停掉mysql服务。   切换到MySQL bin目录下。 比如我的是 C:\Program Files\MySQL\MySQL Server 5.1\bin然后敲下面的粗体的命令。注意你的my.ini位置。C:\Program Files\MySQL\MySQL Server 5.1\bin>mysqld --defaults-file="C:\ProgramFiles\MySQL\M ...
  We are software developers who take pride in our work but choose not to be wholly defined by it. As such, we are proud to say that we value: Our families over the commercial goals of business owners Free time over free snacks Living our lives over maintaining our personal brands ...
MyEclipse+Eclipse Axis2插件开发Web服务 http://blog.sina.com.cn/s/blog_4cc16fc50100b9i4.html
这个资料是网上一位仁兄写的,很有用,保存起来。   在使用Axis2_Codegen_Wizard时出现问题,最后一步点击finish时,报错 -java.lang.reflect.InvocationTargetException等等。查了网上资料,此问题出现很多,原因各不相同。相对于 Axis2的这个代码生成插件,在国外的一论坛上发现解决方案,尝试有效:     1、在axis2-1.4.1-war\axis2\WEB-INF\lib目录下,复制               backport-util-concurrent-3.1.jar               ...
昨天刚搞了个win7系统,今天装oracle 10g的时候 报了如下错误:   Checking installer requirements... Checking operating system version: must be 4.0, 5.0, 5.1 or 5.2.    Actual 6.1                                      Failed <<<< Exiting Oracle Universal Installer, log for this session can be found at D:\Users\ ...
动机: 想在Oracle中用一条SQL语句直接进行Insert/Update的操作。 说明: 在进行SQL语句编写时,我们经常会遇到大量的同时进行Insert/Update的语句 ,也就是说当存在记录时,就更新(Update),不存在数据时,就插入(Insert)。 实战: 接下来我们有一个任务,有一个表T,有两个字段a,b,我们想在表T中做Insert/Update,如果存在,则更新T中b的值,如果不存在,则插入一条记录。在Microsoft的SQL语法中,很简单的一句判断就可以了,SQL Server中的语法如下: if exists(select 1 from T where ...
需求:上传一个文件后返回文件存储的相对路径、文件名到前台页面   遇到的问题:当上传文件的文件名中间有空格,用URLEncoder.encode方法会把空格变成加号(+)在前台页面显示的时候会多出加号。比如,上传的文件名为 “新建 文本文档.txt” ,从后台返回值解码后却变成了“新建+文本文档.txt”   解决方法:在值传回前台时先把变量中的加号(+)全部替换为“%20”。               str.replace("+","%20")       注:在开发中还发现了在传输变量值是路径时, 路径中的斜线是:“/”,而不是“ ...
Global site tag (gtag.js) - Google Analytics