You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@sqoop.apache.org by "Jarek Jarcec Cecho (JIRA)" <ji...@apache.org> on 2012/11/02 00:24:12 UTC

[jira] [Commented] (SQOOP-504) Windows bug: unable to load jar

    [ https://issues.apache.org/jira/browse/SQOOP-504?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13489135#comment-13489135 ] 

Jarek Jarcec Cecho commented on SQOOP-504:
------------------------------------------

Hi Alban,
please accept my apology for keeping the patch without notice. I would like to understand the issue prior committing it. Would you mind providing steps that you've done to replicate the issue?

Jarcec
                
> Windows bug: unable to load jar
> -------------------------------
>
>                 Key: SQOOP-504
>                 URL: https://issues.apache.org/jira/browse/SQOOP-504
>             Project: Sqoop
>          Issue Type: Bug
>          Components: codegen
>    Affects Versions: 1.4.2
>         Environment: Windows
>            Reporter: Alban Perillat-Merceroz
>            Assignee: Alban Perillat-Merceroz
>         Attachments: SQOOP-504.patch
>
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> A piece of code was unix specific for loading a jar.
> The attached file is the a for a generic implementation (works for windows too).
> Edit.
> The issue is: Sqoop generates a jar file containing the generated class corresponding to the DB table to import.
> his code tries to load the jar in order to read the class, but the path "jar:file://" + new File(jarFile).getAbsolutePath() + "!/" seems not to be a valid windows path.
> So I simply replaced the file path
> From this:
> URL url = new URL("jar:file://" + new File(jarFile).getAbsolutePath() + "!/")
> to this:
> URL url = new File(jarFile).toURI().toURL();

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira