Results 1 to 5 of 5

Thread: Install Issue

  1. #1
    Join Date
    Apr 2009
    Posts
    3

    Default Install Issue

    While executing a run.sh while installing a tcserver-6.0.19.A-linux64, the error is encounterd

    ( The java class could not be loaded. java.lang.UnsupportedClassVersionError: com/orangevolt/tools/ant/stub (Unsupported major.minor version 49.0)

    Below is my server Setup:

    tcserver-6.0.19.A-linux64]$ export JAVA_HOME=/usr/java/jdk1.6.0_13/
    tcserver-6.0.19.A-linux64]$ $JAVA_HOME/bin/java -version
    java version "1.6.0_13"
    Java(TM) SE Runtime Environment (build 1.6.0_13-b03)
    Java HotSpot(TM) 64-Bit Server VM (build 11.3-b02, mixed mode)


    I changed run.sh to execute the correct Java version.
    tcserver-6.0.19.A-linux64]$ cat run.sh
    /usr/java/jdk1.6.0_13/bin/java -cp .:ijars/groovy-all-1.6.1.jar:ijars/installer.jar installer

  2. #2

    Default

    You could have also, more easily, updated PATH to include the correct java executable. JAVA_HOME is not used for that purpose.

  3. #3
    Join Date
    Apr 2009
    Posts
    3

    Default Install Issue

    Mhh.. Normally JAVA_HOME variable should be able to be carried over through and be used across the board. The box I was using has a default java installed on /usr/bin/java. Since my PATH looked at /usr/bin first, the script would prematurely error out. Anyway, I had to stick the JAVA_HOME variable ahead of /usr/bin/ in my PATH for the installer to know to use it. I don't really like it but it solves my problem. Thank you very much for steering me into the right direction.
    --Mo Abdulla

  4. #4

    Default

    JAVA_HOME is used by the Java and JVM environment, but when the shell is told to run "java -cp ..." then the shell looks at the PATH envvar to try to find where the 'java' executable lives. So if PATH is "/bin:/usr/bin:/usr/local/bin", the shell will look for /bin/java or /usr/bin/java or /usr/local/bin/java and run the 1st it finds. So if PATH and JAVA_HOME aren't in sync, you could have issues.

  5. #5
    Join Date
    May 2009
    Posts
    2

    Default

    hi
    I am using a work arround by sub-classing org.hibernate.EmptyInterceptor and over-riding the function "String onPrepareStatement(final String sql)". Inside the over-ridden method I am using regular expressions to insert hints into the SQL generated from the HQL (in my case JPQL) by Hibernate.



    Intelemark

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •