`
文章列表
今天在SUSe上安装oracle 11g,由于在操作系统安装的时候选择的是英文版,在完成了oracle的安装以后,启动em,发现按钮为方框,看缓存目录下的文字imx为正常汉字,也就是在生成图片的时候为乱码。 从网上查询了一部分资料,发现好多人都是拷贝,自己没有实践过,经过摸索,终于把问题解决了。 1.首先,分析原因是jdk1.5的问题,与oracle11g无关,重点放在jdk1.5支持汉语字体上 2.自定义支持的汉语字体,将自定义的汉字字体配置到$ORACLE_HOME/jdk/jre/lib/fontconfig.SuSE.properties里面,,我看网上有人说直接在他的src文件里 ...
今天使用blender编辑了一个场景导入到jme3的工程中,结果提示Unknown data type: uint64_t 经过查询资料以后,原因是blender的版本比较新,生成的文件包含了unit64_t的类型,自己修改了Structure;类,添加类型描述PRIMARY_TYPES.put("uint64_t", LONG);   注意修改类的 private static final Map<String, DataType> PRIMARY_TYPES = new HashMap<String, DataType>(11);吧大小增加一 ...
转帖:http://www.sudu.cn/info/index.php?op=article&id=316480 在 JDK1.3 出现以前,您仅能将 Java 本地接口用于非用户界面的工作。JDK 1.3 引入了新的 Java 2 AWT 本地接口,这使您可以在 Java 程序中使用非 Java 的 GUI 组件,尽管这样做会失去纯 Java 解决方案的可移植性。在使用 J2AWT 时,您必须针对要使用它的每个平台制作本地动态连接库或共享库。 下面这段话摘自 JDK1.3 的某个头文件,它说明了这种新的 API 的开发背景及原因:   AWT 支持使用本地 C 或 C++ ...
http://jojol-zhou.iteye.com/blog/729254

Activiti配置数据源

    博客分类:
  • BPM
这段时间在项目中打算引入activiti,考虑进行集成,集成首先要考虑集成的数据源,由于以前的应用持久化采用的是hibernate,而activiti是用的ibatis,所以当前最起码要将他们的数据源统一起来,进行如下配置   <bean id="processEngineConfiguration" class="org.activiti.spring.SpringProcessEngineConfiguration">    <property name="dataSource" ref="data ...
今天安装Android sdk,结果提示Connection to https://dl-ssl.google.com refus 直接在ie地址栏输入dl-ssl.google.com也提示连接不上,结果查询了一下baidu找到了替代方案 在window的hosts文件中添加了一行数据 203.208.46.146 dl-ssl.google.com   解决问题,吧域名解析成固定IP
这几天tomcat在启动的时候来时在连接数据库的时候就停止了,而且停止多长时间都没有反应,也不会提示超时, 1281 [main] INFO  org.springframework.orm.hibernate3.LocalSessionFactoryBean  - Building new Hibernate SessionFactory1287 [main] INFO  org.hibernate.connection.ConnectionProviderFactory  - Initializing connection provider: org.springframework.orm ...
在eclipse种关联jar文件对应的源代码的方法如下 右键工程属性 --> java build path --> libraries -->找到对应的jar文件,展开jar前的+号码,看到source 然后点击Edit进行关联。  
在pentaho的程序中定义的启动listener为SolutionContextListener 他也是主要的启动程序代码,其启动过程会自动查询解决方案,查询解决方案位置的步骤如下: 1)首先查询web.xml中配置的solution-path,这个值指向一个目录,如果存在,此目录为解决方案目录(也就意味着一个web应用只能包含一个方案) 一般配合如下(相当于没有配置)  <context-param>  <param-name>solution-path</param-name>  <param-value></param-val ...
IWorkspace workspace= ResourcesPlugin.getWorkspace(); IPath location= Path.fromOSString(file.getAbsolutePath()); IFile file= workspace.getRoot().getFilesForLocation(location);
Eclipse Preference Scope INSTANCE - The instance scope can also be thought of as "workspace". That is, the preferences which are stored in this scope are stored per workspace, or per running instance of Eclipse. This scope corresponds to the default location of preferences in Eclipse 2.1. ...
今天新写了一个插件,用到了org.eclipse.emf.transaction,在产品配置种配置了以后仍然报错: !ENTRY org.netliving.platforrm.workflow 4 0 2011-10-17 21:45:26.047!MESSAGE !STACK 0org.osgi.framework.BundleException: The bundle "org.netliving.platforrm.workflow_1.0.0.beat [1486]" could not be resolved. Reason: Missing Constrain ...

eclipse调整出错

开发过程提示如下错误: !ENTRY org.eclipse.osgi 4 0 2011-10-11 00:18:07.354!MESSAGE Application error!STACK 1java.lang.RuntimeException: Application "org.eclipse.ui.ide.workbench" could not be found in the registry. The applications available are: org.eclipse.ant.core.antRunner, org.eclipse.equinox.ap ...
在代码种需要用到 import com.sun.org.apache.xml.internal.serialize.OutputFormat;import com.sun.org.apache.xml.internal.serialize.XMLSerializer; 结果提示 Access restriction: The type XMLSerializer is not accessible due to restriction on required library D:\Program Files\Java\jre6\lib\rt.jar   解决办法: window-&g ...

eclipse更新Zorder

如何更新Figure的ZOrder   z-order of Figures is based on their order in Figure.getChildren().so in this particular case the figure in front is the last figure to beadded to panel.to bring the selected figure to front tou just need to do:panel.remove(figure);panel.add(figure);
Global site tag (gtag.js) - Google Analytics