`
e_soft
  • 浏览: 46459 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论
文章列表
#!/bin/bash if `tty >/dev/null 2>&1` ; then         echo "interactive" else         echo "non-interactive" fi ---------------------------- cut here ---------------------------- The "if `tty >/dev/null 2>&1`" statement is one of those cute little Unix ...
private void serializableCheck(Object o, String objName) { System.out.println("The Object is >>>"+objName); try{ ByteArrayOutputStream out = new ByteArrayOutputStream(); ObjectOutputStream oos = new ObjectOutputStream(out); oos.writeObject(o); oos.close(); if (out.toByteArray().len ...
package com.mkyong.image; import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import java.net.URL; import javax.imageio.ImageIO; public class WriteImage {     public static void main( String[] args )     {     BufferedImage image = null;         try {        ...

UCM RIDC 奇怪问题

    博客分类:
  • ridc
用RIDC连接数据库的时候 SearchQueryFormat=Database 查结果老抛出异常 跟同事结果完全不一样 后来ucm configuration 改了下重启 就好了 留待以后分析 dennis ucm configuation: dennis AllowUpdateForGenwww=1 registerStartMenuActions=1 FileEncoding=UTF8 WebServer=javaAppServer IDC_ID=IpmNode FsAutoConfigure=true IntradocServerPort=4444 UseEntitySecurity= ...
I've seen some blog posts about using the Content Server's RIDC API in ADF, but none cover all aspects of using the full power of this API to work with UCM in a programmatic environment. In order to get things started you need to install the WebCenter extensions for JDeveloper, create a WebCenter Po ...
http://www.iteye.com/topic/1120048 第一面 1、说说项目 由于我几年一直做一个产品,从后台做到前台,从业务开发做到技术平台,所以就画了整个产品部署架构图,b/s & c/s的,然后一层层的讲解。 B/S现有Web框架改造、浏览器缓存、 ...
http://www.iteye.com/topic/1120046 第一面 项目: 1、找一个项目,介绍下情况。其中遇到了什么问题,每种问题怎么样的解决方案。 算法题: 2、一个排好序的数组,找出两数之和为m的所有组合 3、自然数序列,找出任意连续之和等于n的所有子序列 数据结构: 4、从数据库查出一个数据结果集,其中有一个时间字段,请用一个数据结构存储使得可以最快速的查出某个时间段内的记录。 5、上一题我提到了B+树,他就继续问了为何用B+树实现索引而不用二叉树 数据库: 6、说说Oracle数据库的事务隔离级别,以及遇到的相关问题 这个我说了标准的四种级别,Oracle实现的三种级别,并 ...
http://www.iteye.com/topic/1118899   之前去百度面试,整理了一下面试问题。没有笔试,直接和面试官交谈。感觉面试官人挺好的,挺有耐心,每次面试回来不论公司大小,不管能不能拿到offer,但基本都能有一些有价值的输入,还挺 ...
wlst script create datasource connect("weblogic","weblogic1", "t3://localhost:7001") edit() # Change these names as necessary dsname="CPFDS" server="AdminServer" cd("Servers/"+server) target=cmo cd("../..") startEdit() # start ...
http://www.jasonsdevelopercorner.com/?p=58 How To Get a DBTransaction Object Anytime You Need One (Originally posted on the “old” Jason Bennett’s Developer Corner, Thursday, March 06, 2008) If you decide to execute a SQL statement or some PL/SQL code from with your ADF Faces application outside of ...
If you want to call it as sleep rather than sleep.py, then you can add the .PY extension to your PATHEXT environment variable. In XP, you can edit it in: My Computer → Properties (menu) → Advanced (tab) → Environment Variables (button) → System variables (frame)
http://blog.sina.com.cn/s/blog_700c93a80100soyp.html 今天发现一个问题,不知道是不是Django的bug, 当在django管理后台删除掉默认的example.com,添加自己的site后,报错,DoesNotExist at /admin/ , google之,看到一个google group貌似有答案,有人答曰:移除掉INSTALLED_APPS之django.contrib.sites即好使,试,果然可以了。 觉得奇怪,后来想想是不是原来那个ID被写死了?于是重新去掉django.contrib.sites前面的#号,登录数据库, ...
今天做jmap,碰到acess denied.而且 java visualVM 碰到很多功能不能使用的问题。 发现原来权限不够。 解决:cmd用run as administrator启动 java visualVM 同理
<script type="text/javascript"> function GetXmlHttpObject() { if (window.XMLHttpRequest) { // code for IE7+, Firefox, Chrome, Opera, Safari return new XMLHttpRequest(); } if (wi ...
我们项目使用embed tomcat,用class,main方法启动编写代码方式启动tomcat,使用intellij, 前几天刚处理jvm不明原因崩溃,重装了jdk,现在启动tomcat巨慢,而且360发现jvm跟intellij之间通信达到100K/s,网上搜索好几天也找不出什么问题, 今天突然启动时候disable breakpoint了,一下启动速度快了n倍,而且jvm跟intellij之间没有通信了。貌似是因为breakpoint的原因?但是原来也有很多 breakpoint,初步猜想可能是某几个breakpoint打到class内部或者是jdk内部导致速度巨慢。 ----补记录 ...
Global site tag (gtag.js) - Google Analytics