随笔- 488
文章- 1
评论- 31
阅读-
144万
09 2016 档案
SOAP和WSDL的一些必要知识(转)
摘要:原文地址:SOAP和WSDL的一些必要知识 SOAP和WSDL对Web Service、WCF进行深入了解的基础,因此花一些时间去了解一下是很有必要的。 一、SOAP(Simple Object Access Protocol) 如果我们要调用远程对象的方法,就必定要告诉对方,我们要调用的是一个什么
阅读全文
Web 服务编程,REST 与 SOAP(转)
摘要:原文地址:Web 服务编程,REST 与 SOAP REST 简介 在开始我们的正式讨论之前,让我们简单看一下 REST 的定义。 REST(Representational State Transfer)是 Roy Fielding 提出的一个描述互联系统架构风格的名词。为什么称为 REST?We
阅读全文
Integrating JAD decompiler into JDeveloper(转)
摘要:原文地址:Integrating JAD decompiler into JDeveloper In JDeveloper, when debugging or otherwise navigating to classes that JDeveloper does not have the sou
阅读全文
Eclipse下配置tomcat且使用eclipse开启debug模式,集成JAD反编译插件
摘要:Eclipse运行Tomcat的2种方式 eclipse启动Tomcat服务输入http://localhost:8080/报404解决方法 Eclipse 中Tomcat 启动 与直接启动Tomcat的区别 Java Eclipse进行断点调试 (8.为Eclipse添加反编译插件,更好的调试)这
阅读全文
Java compiler level does not match the version of the installed Java project facet.(转)
摘要:Java compiler level does not match解决方法 从别的地方导入一个项目的时候,经常会遇到eclipse/Myeclipse报Description Resource Path Location Type Java compiler level does not matc
阅读全文
OAF页面隐藏右上角的全局按钮(主页,注销等)
摘要:OAPageLayoutBean page = pageContext.getPageLayoutBean(); page.prepareForRendering(pageContext); page.setGlobalButtons((UINode)null); // Must come after prepareForRendering()
阅读全文
查询EBS请求日志的位置和名称
摘要:select * from FND_CONCURRENT_PROGRAMS_VL fcp where fcp.USER_CONCURRENT_PROGRAM_NAME like '%CUX%XXXX%'; select * from FND_CONC_REQ_SUMMARY_V fcr where fcr.CONCURRENT_PROGRAM_ID= xxxxxx order by fcr.R...
阅读全文
Eclipse中10个最有用的快捷键组合(转)
摘要:Eclipse中10个最有用的快捷键组合 1. ctrl+shift+r:打开资源 这可能是所有快捷键组合中最省时间的了。这组快捷键可以让你打开你的工作区中任何一个文件,而你只需要按下文件名或mask名中的前几个字母,比如applic*.xml。美中不足的是这组快捷键并非在所有视图下都能用。 2.
阅读全文