有没有办法将 JAR 添加到 icCube 安装以使其可用于 MDX JAVA 集成、JDBC 数据源等......?
问问题
137 次
1 回答
1
您必须将 JAR 添加到 icCube lib 目录中,并可能相应地更新 CLASSPATH:
视窗 (.exe)
- copy the JAR into C:\Program Files\icCube\5.1\lib
- restart icCube
视窗 (.bat)
- copy the JAR into C:\Program Files\icCube\5.1\lib
- edit the C:\Program Files\icCube\5.1\bin\icCube.bat file to add the JAR to the CLASSPATH (e.g., SET CLASSPATH=%CLASSPATH%;../lib/new-jar.jar)
- restart icCube
Linux
- copy the JAR into /opt/icCube/lib
- edit the file /opt/icCube/bin/icCube.sh to add the JAR to the CLASSPATH (e.g., CLASSPATH="$CLASSPATH:$ICCUBE/lib/new-jar.jar" )
- restart icCube
苹果系统
- copy the JAR into the icCube.app package Contents / Java / lib
- edit the file Contents / Info.plist to add the new JAR to the <key>JVMClassPath</key>
- restart icCube
于 2015-05-21T13:44:20.143 回答