本記事では CData サポート担当からこんなことを聞かれたらどこを確認すべきか?という観点で、よく頂くお問合せ内容をご紹介します。
記事はこちら →The CData JDBC Driver for Box enables you to follow standard procedures to integrate Box data into Java Web applications. This article shows how to deploy the CData JDBC Driver for Box in WebLogic server.
Add the driver JAR and license file to the classpath your application will be using. The .lic file must be located in the same folder as the JAR. These files are located in the lib subfolder of the installation directory.
If you want to add the driver to all domains, add the JAR to the WEBLOGIC_CLASSPATH environment variable. add the following line to the commEnv.cmd/sh script in WL_HOME\common\bin\.
set WEBLOGIC_CLASSPATH=your-installation-directory\lib\cdata.jdbc.box.jar;%WEBLOGIC_CLASSPATH%
If you want to add the driver to a specific domain, you will need to add the JAR to the PRE_CLASSPATH environment variable. Add the following line to the setDomainEnv.cmd/sh script in the bin subfolder of the folder for that domain:
set PRE_CLASSPATH=your-installation-directory\lib\cdata.jdbc.box.jar;%PRE_CLASSPATH%
After installing the driver, create the connection.
Click Next to use the default options. On the last page, enter the following information and click Test Configuration:
URL: Enter the JDBC URL. A typical JDBC URL is below:
jdbc:box:OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;CallbackURL=http://localhost:33333;
Box は、認証にOAuth スタンダードを使用します。Box への認証には、登録アプリのOAuthClientId、OAuthClientSecret、CallbackURL を入力します。詳細はヘルプドキュメントの「はじめに」を参照してください。
尚、本製品はBox のファイルの一覧表示やユーザー管理情報の取得用です。Box に保管されているExcel、CSV、JSON などのファイル内のデータを読み込みたい場合には、Excel Driver、CSV Driver、JSON Driver をご利用ください。
After selecting the server where you want to deploy the JDBC data source, you can now connect to Box data.
The steps above show how configure the driver in a simple connection pooling scenario. For more use cases and information, see the JDBC sections in the WebLogic Data Sources chapter of the Oracle Fusion Middleware documentation.