摘要: 链接服务器:192.168.*.*用户:root/******以oracle身份登录数据库,命令:su – oracle切换到要使用的数据库的sid:export ORACLE_SID=nnn 检查oracle监听服务运行状态:lsnrctl status。提示信息TNS:no listener,表 阅读全文
posted @ 2018-09-29 15:24 袋子里的袋鼠 阅读(147) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="gbk" ?><html xmlns="http://www.w3.org/1999/xhtml"><head> <meta http-equiv="Content-Type" content="text/html; charset=gbk 阅读全文
posted @ 2018-09-28 13:48 袋子里的袋鼠 阅读(698) 评论(0) 推荐(0) 编辑
摘要: 一、服务端实现。 1.CXF必须包; 2.applicationcontext.xml里面加入 (1)头文件: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/bea 阅读全文
posted @ 2018-09-27 17:17 袋子里的袋鼠 阅读(174) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-08-21 16:09 袋子里的袋鼠 阅读(2) 评论(0) 推荐(0) 编辑
摘要: import com.sinosoft.survey.api.SurveyConstant;import org.apache.commons.net.ftp.FTPClient;import org.apache.commons.net.ftp.FTPReply; import java.io.I 阅读全文
posted @ 2018-07-27 19:52 袋子里的袋鼠 阅读(332) 评论(0) 推荐(0) 编辑
摘要: //微信 JSONObject json = new JSONObject();json.put("touser", touser);json.put("template_id", templatId); JSONObject result = HttpsUtil.httpsRequest(tmpu 阅读全文
posted @ 2018-07-26 13:13 袋子里的袋鼠 阅读(888) 评论(0) 推荐(0) 编辑
摘要: @Query使用Pageable 进行分页查询排序 Pageable:Pageable pageable = new PageRequest(pageNo-1,pageSize,sort); Sort:Sort.Order order = new Sort.Order(Sort.Direction. 阅读全文
posted @ 2018-07-24 10:29 袋子里的袋鼠 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 1.大写转小写 Option ExplicitValidationMode = TrueInteractiveMode = im_Batch Dim mdl ' the current model ' 取得当前ModelSet mdl = ActiveModelIf (mdl Is Nothing) 阅读全文
posted @ 2018-05-11 16:42 袋子里的袋鼠 阅读(589) 评论(0) 推荐(0) 编辑
摘要: 执行VB脚本: Option Explicit Dim mdl ' the current model Set mdl = ActiveModel If (mdl Is Nothing) Then MsgBox "There is no Active Model" End If Dim HaveEx 阅读全文
posted @ 2018-05-11 16:32 袋子里的袋鼠 阅读(459) 评论(0) 推荐(0) 编辑
摘要: hystrix熔断:熔断只是作用在服务调用这一端,只需改consumer端1)熔断器开关相互转换的逻辑a.服务的健康状况 = 请求失败数 / 请求总数. b.熔断器开关由关闭到打开的状态转换是通过当前服务健康状况和设定阈值比较决定的b1.关闭时, 请求被允许通过熔断器. 如果当前健康状况高于设定阈值 阅读全文
posted @ 2018-05-04 18:01 袋子里的袋鼠 阅读(127) 评论(0) 推荐(0) 编辑