摘要: 报错: org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment] org.hibernate.b 阅读全文
posted @ 2018-03-22 14:48 fulse 阅读(4368) 评论(0) 推荐(0) 编辑
摘要: 恢复内容开始 Axisfault faultcode:Server.userException异常 AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException faultSubcode: f 阅读全文
posted @ 2017-12-22 10:20 fulse 阅读(3086) 评论(1) 推荐(0) 编辑
摘要: split()函数: scala> "a-b-c-d-e".split("-",3)res0: Array[String] = Array(a, b, c-d-e)scala> "a-b-c-d-e".split("-",4)res1: Array[String] = Array(a, b, c, 阅读全文
posted @ 2017-11-18 09:27 fulse 阅读(10867) 评论(0) 推荐(1) 编辑
摘要: (1)Error:scalac: bad symbolic reference. A signature in package.class refers to type compileTimeOnly in package scala.annotation which is not availabl 阅读全文
posted @ 2017-11-17 15:11 fulse 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 手动运行java脚本,可以,但定时运行没效果 查看脚本是否赋予执行权限;若无则赋予可执行权限,若还是没用,则在脚本增添环境变量,百度搜索。 阅读全文
posted @ 2017-11-13 14:44 fulse 阅读(93) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/rocky-AGE-24/p/6883503.html 阅读全文
posted @ 2017-11-09 11:34 fulse 阅读(160) 评论(0) 推荐(0) 编辑
摘要: (2) 新建一个Java Project,工程创建好后,生成src目录 (3) cmd命令,进入jdk的bin目录下运行命令: wsimport -keep -s D:\Workspaces -p com.cn.phone -verbose http://ws.webxml.com.cn/WebSe 阅读全文
posted @ 2017-11-07 18:25 fulse 阅读(159) 评论(0) 推荐(0) 编辑
摘要: mysql查看表结构命令,如下: desc 表名; show columns from 表名; describe 表名; show create table 表名; 阅读全文
posted @ 2017-11-03 16:11 fulse 阅读(35259) 评论(0) 推荐(2) 编辑
摘要: 写入文件直接覆盖: File.WriteAllTest(@"E:\data.txt",Data,Encoding.ASII); E:\data.txt:本地文件路径; Data:要写入的数据 ;Encoding.ASII:编码方式 追加文件: StreamWrite sw=new StreamWri 阅读全文
posted @ 2017-11-02 18:51 fulse 阅读(1160) 评论(0) 推荐(0) 编辑
摘要: linux删除目录(文件夹):rmdir 目录名(目录需非空);直接删除可用: rm -rf 目录名 ,不需考虑是否为空 SecureCRT上传文件:rz ,下载文件:sz rpm 安装:rpm -ivh 包 rpm卸载:rpm -e --nodeps 包名 hadoop 集群启动: cd 到sbi 阅读全文
posted @ 2017-10-31 09:58 fulse 阅读(15085) 评论(0) 推荐(2) 编辑