Java在Oracle中运行-导入的jar [英] Java running in Oracle - the imported jars

查看:231
本文介绍了Java在Oracle中运行-导入的jar的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试获取一个小的Java类以加载到Oracle 11g中,以便我可以运行它并从PL/SQL调用它.我在eclipse上在本地计算机上编码并编译了该类,并且编译良好.我将其打包到一个jar中(以及它依赖于jar中的其他jar文件).他们试图将我的jar加载到Oracle 11g中.不幸的是,所有内容都已加载,当它加载了我的自定义java类时,它仍然无效,并且当我尝试在Oracle中对其进行编译时,它说它找不到对这些类的引用(那些与我的类一起打包在jar中的类).

I am trying to get a small java class to load into Oracle 11g so I can run it and call it from PL/SQL. I coded and compiled the class on my local machine in eclipse and it compiles fine. I packaged it up into a jar (with the other jar files it depends on in the jar). They I tried loading my jar into Oracle 11g. Everything loads in, unfortunately when it loads my custom java class, it stays invalid and when I try to compile it within Oracle it says it can't find references to the classes (the ones I had packaged in my jar with my class).

我还需要配置其他设置吗?

Is there some other sort of setting I need to configure?

这是我的自定义类代码的样子:

Here is what my custom classes code looks like:

import com.flashline.registry.openapi.base.OpenAPIException;
import com.flashline.registry.openapi.entity.*;
import com.flashline.registry.openapi.service.v300.FlashlineRegistry;
import com.flashline.registry.openapi.service.v300.FlashlineRegistryServiceLocator;
import javax.xml.rpc.ServiceException;
import java.net.URL;
import java.rmi.RemoteException;
import org.apache.log4j.Logger;
import java.net.MalformedURLException;

public class AssetExtractor {

/**
 * @param args
 */
public static void main(String[] args) {
    // TODO Auto-generated method stub

}


   static Logger LOG;
   static AuthToken authToken = null;

   static FlashlineRegistry repository = null;
   static URL repoURL;


    public static FlashlineRegistry getRepository()
    {
        if(repository == null)
            try
            {
                try{
                    repoURL = new URL("https://myserver/oer/services/FlashlineRegistry");
                }catch(MalformedURLException mue)
                {
                    LOG.error(mue);
                }

                repository = (new FlashlineRegistryServiceLocator()).getFlashlineRegistry(repoURL);
                LOG.debug((new StringBuilder()).append("Created repository at URL=").append(repoURL.toString()).toString());
            }
            catch(ServiceException e)
            {
                LOG.error(e, e);
            }
        return repository;
    }

    public static AuthToken getAuthToken()
    {
        if(authToken == null)
            try
            {
                authToken = getRepository().authTokenCreate("user", "password");
                LOG.debug("Created auth token.");
            }
            catch(OpenAPIException e)
            {
                LOG.error(e, e);
            }
            catch(RemoteException e)
            {
                LOG.error(e, e);
            }
        else
            try
            {
                getRepository().authTokenValidate(authToken);
            }
            catch(OpenAPIException e)
            {
                LOG.info("Auth token was invalid.  Recreating auth token");
                authToken = null;
                return getAuthToken();
            }
            catch(RemoteException re)
            {
                LOG.error("Remote exception occured during creation of suth token after determined to be invalid", re);
                re.printStackTrace();
                authToken = null;
            }
        return authToken;
    }

    public static String getAssetXML(String strAssetID)
    {
        String strAsset = null;
        try
        {
            strAsset = getRepository().assetReadXml(getAuthToken(), Long.parseLong(strAssetID));
        }
        catch(OpenAPIException e)
        {
            e.printStackTrace();
        }
        catch(RemoteException e)
        {
            e.printStackTrace();
        }
        return strAsset;
    }

}

所有导入的* .jar文件都位于我的AssetExtractor.jar中

And all the *.jar files for the imports are inside my AssetExtractor.jar

我用来将jar加载到oracle中的命令是:

The command I've been using to load the jar into oracle is:

loadjava -v -f -resolve -resolver "((* OER) (* PUBLIC))" -user oer/***** AssetExtractor.jar

任何想法都会有所帮助!

Any ideas would be helpful!

推荐答案

因此,如果我执行以下操作,它几乎可以解决我的所有问题:

So it appears that if I do the following it solves nearly all my problems:

编辑Oracle用户的.profile,以设置并导出具有正确路径的CLASSPATH,PATH,LD_LIBRARY_PATH,ORACLE_HOME,JAVA_HOME

Edit the Oracle users' .profile to SET and EXPORT the CLASSPATH, PATH, LD_LIBRARY_PATH, ORACLE_HOME, JAVA_HOME with the correct paths

SQLPlus和sysdba一样

SQLPlus as sys as sysdba

EXEC dbms_java.grant_permission( 'OER', 'SYS:java.util.PropertyPermission', 'java.class.path', 'write' );

以oracle用户身份运行OS命令行:

OS Commandline as oracle user:

loadjava –v –grant PUBLIC <jar> -user oer/****** for all jars

SQLPlus作为OER用户

SQLPlus as OER user

DECLARE
   v_classpath VARCHAR2(4000);
   v_path VARCHAR2(4000);
BEGIN
   v_classpath := DBMS_JAVA.set_property('java.class.path',    '/opt/oracle/102/jdk/lib:/mnt/hgfs/vmshare/rex_lib/aler-axis-   1.2.1.jar:/mnt/hgfs/vmshare/rex_lib/aler-axis-jaxrpc-1.2.1.jar:/mnt/hgfs/vmshare/rex_lib/client.rex-   11.1.1.5.0.jar:/mnt/hgfs/vmshare/rex_lib/commons-httpclient-3.0rc2-   flashline.jar:/mnt/hgfs/vmshare/rex_lib/log4j-1.2.8.jar');
   v_path := DBMS_JAVA.set_property('java.path', '/opt/oracle/102/jdk/bin');
END;
/

alter java source "AssetExtractor" compile;
show errors

唯一的未解决问题是,由于某种原因,它仍然无法找到/解析某些Oracle OER类(它们应该全部位于client.rex * .jar中,我在其中打开并看到了它们.如果可以的话)解决这部分,那么我就走了.

The only outstanding issue is that for some reason it still can't locate/resolve some of the Oracle OER classes (which should all be in the client.rex*.jar, I opened and saw them there. If I can solve this part then I'm good to go.

这篇关于Java在Oracle中运行-导入的jar的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆