书接上回:AppFuse 3常见问题与解决方法 ,一个新问题:乱码! 在3.0.0版本下,执行mvn appfuse:full-source命令后使用mvn jetty:run启动工程,页面上就出现了乱码。我要说的是这个乱码问题非常有趣,它的有趣之处在于最后的解决方法看上去与问题差的太远。这个解决方法是:找到pom中对hibernate3-maven-plugin的配置,将其中的部分注释掉,即不在...
分类:
移动开发 时间:
2014-08-19 09:25:33
阅读次数:
268
java线程的特点:1.java的线程是通过java.lang.Thread类来实现。2.创建Thread的实例来创建新的线程3.线程通过特定的Thread对象run()来操作。4.通过调用Thead类的start()来启动一个线程....
分类:
编程语言 时间:
2014-08-18 20:36:02
阅读次数:
227
SQLPlus directive "WHENEVER SQLERROR EXIT 1" will return a specified code when any SQL error throwed when run a sql file.Then we can catch the return ...
分类:
数据库 时间:
2014-08-18 18:06:22
阅读次数:
279
在文件src\http\ngx_http_core_module.c的函数ngx_http_core_run_phases(ngx_http_request_t *r)里面,添加如下代码://声明部分 ngx_str_t* name; ngx_http_variable_value_t*...
分类:
其他好文 时间:
2014-08-18 17:56:22
阅读次数:
1094
①原题 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)). ②乡村英语翻译一下 给你两个...
分类:
其他好文 时间:
2014-08-18 16:40:32
阅读次数:
155
n 基本框架:a) Gdb功能b) 运行程序c) 查看源码d) 设置断点(break)与观察点(watch)e) 单步调试f) Gdb常用命令总结5.1 gdb功能1)启动程序:Run(r),另外启动程序的时候还可以带上参数(argv[1],argv[2]……)2) 设置断点:设置断点:brea.....
分类:
数据库 时间:
2014-08-18 16:12:12
阅读次数:
250
Run application, SQLiteFullException happend when devices memory is full....
分类:
其他好文 时间:
2014-08-18 14:30:52
阅读次数:
135
1. Qt5.3.1下载地址为:http://qt-project.org/,选择”Qt 5.3.1 for Linux 32-bit”版本,文件名是”qt-opensource-linux-x86-5.3.1.run”;2. 进入qt-opensource-linux-x86-5.3.1.run目...
分类:
其他好文 时间:
2014-08-17 21:18:42
阅读次数:
280
//动态原型模式function Box(name,age){ this.name = name; this.age = age; this.family = ['哥哥','姐姐','妹妹']; if(typeof this.run != 'function'){ ...
分类:
其他好文 时间:
2014-08-17 18:17:42
阅读次数:
176
cf459E这题说的是给定一个n点m条边的带边权的有向图,从中找出一条路径(可以带环),该路径包含的边数最多,并且要求路径中的权值必须严格递增,然后对边进行排序完个后采用dp去解特殊判断一下边权值相等的时候就ok了#include #include #include #include /* run ...
分类:
其他好文 时间:
2014-08-17 16:48:12
阅读次数:
183