上一页 1 ··· 8 9 10 11 12
摘要: public static void test(){ String[] chars = new String[] {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", &q 阅读全文
posted @ 2019-08-09 12:11 Dream's 阅读(5479) 评论(0) 推荐(0)
摘要: 先下载安装cxf CXF 项目的主页地址是: http://cxf.apache.org/ 下载地址是: http://cxf.apache.org/download.html 安装成功后找到bin目录下得wsdl2java.bat文件 打开命令串窗口切换到该文件的目录下,执行wsdl2java.b 阅读全文
posted @ 2019-08-09 12:08 Dream's 阅读(2138) 评论(1) 推荐(0)
摘要: 在写sql过程中竟然发现了一个oracle中decode和聚合函数连用的bug. 来说一下: 先建一张临时的测试表 create table test (id number,value varchar2(10)); insert into test values(1,0); insert into 阅读全文
posted @ 2019-08-09 12:01 Dream's 阅读(347) 评论(0) 推荐(0)
摘要: <!DOCTYPE HTML> <html> <head> <title>Rose</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> </head> <body style="margin-left:350px"> <canvas id="c"></canvas> <script> v 阅读全文
posted @ 2019-08-09 11:57 Dream's 阅读(707) 评论(0) 推荐(0)
摘要: 可能是由于版本的限制,maven无法添加oracle的驱动jar。 解决方法: 打开命令行,运行如下: mvn install:install-file -Dfile=E:/ojdbc6.jar -DgroupId=comoracle -DartifactId=ojdbc6 -Dversion=10 阅读全文
posted @ 2019-08-09 11:53 Dream's 阅读(286) 评论(0) 推荐(0)
摘要: 解决方法: 用sysdba登录,执行show parameter job_queue_process看看结果是不是0 如果是这个原因,可以修改此参数 ALTER SYSTEM SET job_queue_processes = 100; 小结 1)job_queue_processes参数决定了jo 阅读全文
posted @ 2019-08-09 11:38 Dream's 阅读(4257) 评论(0) 推荐(1)
上一页 1 ··· 8 9 10 11 12