如何invoking a SOAP service from PLSQL? the call is timing out within 60 seconds no matter what the timeout value we set using set_transfer_timeout method, we are getting the following error. "Error Occurred. Message: ORA-29273: HT ...
阅读全文web app在处理西方文字的时候总会遇到这样一个问题,那就是单词的换行问题。 如何不让长单词溢出? 如何在不让长单词溢出的同时,更好的利用换行引起的空间? 这就是word-wrap和word-break的出现原因。 来看图找不同吧: 分解动作: 1) 浏览器默认行为: 当word不能被当前行容纳时,该单词会另起一行。所以原先行会有多余空间空出。而如果这个word又是很长很长以至于不能被一行容纳,则会溢出。 2)在上面这种特别长的单词时, ...
阅读全文http://www.artfulsoftware.com/mysqlbook/sampler/mysqled1ch20.html https://www.jianshu.com/p/6881b9ec1759 ...
阅读全文转自官网 https://mp.weixin.qq.com/debug/wxadoc/dev/framework/config.html 配置 app.json文件用来对微信小程序进行全局配置,决定页面文件的路径、窗口表现、设置网络超时时间、设置多 tab 等。 以下是一个包含了所有配置选项的 app.json : { "pages": [ "pages/index/ind ...
阅读全文这几天一直折腾android emulator设置proxy的问题。某些环境下需要使用代理上网(如公司),尝试了网上介绍的几种方式都没有成功,方法是应该是对的,只是还有些细节没有提到,所以弯路也走了不少。笔记本拿回家就没有问题,emulator browser能成功上网。现在就记录下一些尝试了的过程,以便以后参考或能帮助遇到同样问题的朋友。 尝试一,常见的解决办法:设置-http-proxy来启动emulator。(我仍然失败了) Android\sdk\tools\emulat ...
阅读全文Create JWT的在线工具: http://jwtbuilder.jamiekurtz.com http://kjur.github.io/jsjws/tool_jwt.html 验证JWT的在线工具 http://jwt.io/ Base64 encode/decode的在线工具: https://www.base64encode.org https://www.base64decode.org ...
阅读全文...
阅读全文Oracle Integration Cloud Service (一)管理Oracle ICS https://docs.oracle.com/en/cloud/paas/integration-cloud-service/icsug/administering-integration-cloud-services.html Topics Monitoring Integrations 监控集成 Managing Integrat ...
阅读全文Personal pronouns:人称代词 Pronouns - 代词 代词用于指代名词或名词短语。使用代词可以多次重复前文提到的名词。 例如: Jane ate some dinner. She was hungry. (简吃饭了。她饿了。) 代词有多种形式。英语中有七个人称代词。 单数 复数 I 我 we 我们 you ...
阅读全文Spring Cloud学习过程中相关的知识点和软件项目: (1) Cloud Foundry: https://www.cloudfoundry.org/ (2)Pivotal Web Services: https://run.pivotal.io/ (3)Zookeeper: https://zookeeper.apache.org/doc/current/zookeeperSt ...
阅读全文Besides ApplicationContextAware and BeanNameAware (discussed earlier), Spring offers a wide range of Aware callback interfaces that let beans indicate to the container that they require a certain infrastructure de ...
阅读全文分享两个有用的在线工具: searchcode: https://searchcode.com 比如说搜索login的php代码实现,可以看到很多example findjar工具可以帮助我们找到jar以及其相关信息。 http://www.findjar.com/ ...
阅读全文一段SVG代码开始SVG的学习 <svg version="1.1" id="clock" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="600px" height="60 ...
阅读全文启动SoapUI5.3后几秒钟后crash重启。重启后仍然不工作。 后台hs_err_pidxxxx.log内容如下: [134 Michal-MBP:Applications kolisko$ SoapUI-5.3.0.app/Contents/MacOS/JavaApplicationStub Configuring log4j from [/Applications/SoapUI-5.3.0.app/Contents/java/app/bin/soapui-log4j. ...
阅读全文参考官方文档:Java Keytool Documentation Java Keytool有如下命令: certreq changealias delete exportcert genkeypair genseckey help importcert importkeystore keypasswd &nbs ...
阅读全文本文为spring cloud学习笔记,官方文档:https://cloud.spring.io/spring-cloud-static/Greenwich.SR1/ 官方文档内容比较多,大体分为下面几大部分: Cloud Native Applications Spring Cloud Context: Application Context Services Spring Cloud Commons: Common Abstractions ...
阅读全文第一次使用datatables,在不经意间遇到了这个问题: Uncaught TypeError: Cannot read property 'mData' of undefined 开始以为是与jquery的版本有关,使用了官网提供的版本仍然有这个问题。 后来查到相关话题,原来datatables对table的结构比较严格,必须要有 <thead> </thead> 添加后问题解决。 ...
阅读全文MvcUriComponentsBuilder 和 ControllerMethodInvocationInterceptor的解读 ControllerMethodInvocationInterceptor实现了CGLIB的MethodInterceptor,所以是CGLIB动态代理的方法拦截器,从命名来看是对Controller的方法做了争强。同时也实现了org.aopalliance.intercept.MethodInterceptor private ...
阅读全文Gradle命令学习 Gradle的build.gradle其实是groovy script.(Gradle expresses its build files in Groovy. ) Gradle的基本build活动就是tasks.可以通过Gradle tasks命令来列出当前Root Project中可使用的任务。 Gradle tasks可以列出当前build.gradle中所有可以使用的tasks,包括自定义的task。主要有几类任务:Build任务 ...
阅读全文1. Make it Readable 书写格式可读 2. Keep it Consistent 当你开始创建自己的CSS标准时,你就已经开始变得更专业更精通。标准是一致的保证。 3. Start with a Framework 建议先从使用框架开始,至少框架有一年左右的使用经历。 4. Use a Reset Reset目的是为了减少浏览器默认行为的差异。可以参考MeyerWeb 5. Organzie the stylesheet ...
阅读全文