製品をチェック

無償トライアル:

無償トライアルへ

製品の情報と無償トライアルへ:

Magento JDBC Driver

Magento データ連携のパワフルなJava アプリケーションを素早く作成して配布。

データ連携でお困りですか?

お問い合わせ

Connect to Magento from a Connection Pool in WebLogic


Use the CData JDBC Driver for Magento to connect to Magento data from Web applications running on WebLogic.


magento ロゴ画像
jdbc ロゴ画像

JDBC

WebLogic

The CData JDBC Driver for Magento enables you to follow standard procedures to integrate Magento data into Java Web applications. This article shows how to deploy the CData JDBC Driver for Magento in WebLogic server.

Install the JDBC Driver 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.magento.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.magento.jar;%PRE_CLASSPATH%

Create a JDBC Data Source for Magento

After installing the driver, create the connection.

  1. In the Domain Structure tree, click Services -> Data Sources -> New -> Generic Data Source.
  2. On the JDBC Data Source Properties page, enter the following information:
    • Name: Enter a user-friendly name; for example, magentojdbc.
    • JDBC Name: Enter the path the JDBC data source will be bound to; for example, jdbc/Magento.
    • Database Type: Select Other.

    A user-friendly name and the path to bind to. (Salesforce is shown.)
  3. Click Next to use the default options. On the last page, enter the following information and click Test Configuration:

    • Driver Class Name: Enter the driver class, cdata.jdbc.magento.MagentoDriver, in this property.
    • URL: Enter the JDBC URL. A typical JDBC URL is below:

      jdbc:magento:OAuthClientId=MyConsumerKey;OAuthClientSecret=MyConsumerSecret;CallbackURL=http://127.0.0.1:33333;Url=https://mymagentohost.com;

      Magento はOAuth 1 認証標準を使用します。Magento REST API に接続するには、Magento システムにアプリを登録してOAuthClientId、OAuthClientSecret、およびCallbackURL 接続プロパティの値を取得する必要があります。 OAuth 値を取得して接続するには、ヘルプドキュメントの「はじめに」を参照してください。

      また、Magento システムへのURL を提供する必要があります。URL は、Magento REST API を顧客として使用しているか管理者として使用しているかによって異なります。

      • Customer: Magento を顧客として使用するには、事前にMagento のホームページで顧客アカウントを作成します。これを行うには、「アカウント」->「登録」をクリックします。それからURL 接続プロパティをMagento システムのエンドポイントに設定します。

      • Administrator: Magento を管理者として使用するには、代わりにCustomAdminPath を設定します。この値は、「Admin」メニューの「Advanced」設定で取得できます。「System」->「Configuration」->「Advanced」->「Admin」->「Admin Base URL」を選択することでアクセスできます。

        このページ上の「Use Custom Admin Path」設定がYES に設定されている場合、値は「Custom Admin Path」テキストボックス内にあります。それ以外の場合は、CustomAdminPath 接続プロパティをデフォルト値の"admin" に設定します。

    • Database User Name: Enter the username, if not specified in the JDBC URL.
    • Password: Enter the password, if not specified in the JDBC URL.
    Driver connection properties. (Salesforce is shown.)

After selecting the server where you want to deploy the JDBC data source, you can now connect to Magento data.

The data source deployed on the target server and enabled for connection pooling. (Salesforce is shown.)

More WebLogic Integration

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.