You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Christian Müller (Reopened JIRA)" <ji...@apache.org> on 2011/11/22 23:58:39 UTC

[jira] [Reopened] (CAMEL-4362) Bug in parsing of JPA uri

     [ https://issues.apache.org/jira/browse/CAMEL-4362?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Christian Müller reopened CAMEL-4362:
-------------------------------------

      Assignee: Christian Müller
    
> Bug in parsing of JPA uri
> -------------------------
>
>                 Key: CAMEL-4362
>                 URL: https://issues.apache.org/jira/browse/CAMEL-4362
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-jpa
>    Affects Versions: 2.8.0
>            Reporter: David J. M. Karlsen
>            Assignee: Christian Müller
>             Fix For: 2.8.2, 2.9.0
>
>
> According to http://camel.apache.org/jpa.html entityName is optional.
> When configuring with the following uri (e.g. w/o entityName):
> <camel:endpoint id="jpaEndpoint" uri="jpa:?persistenceUnit=journalPersistenceUnit&amp;usePersist=true" />
> the following warning will be displayed
> 2011-08-21 18:57:11,381 [main][][][][][][][] WARN org.apache.camel.util.ObjectHelper - Cannot find class: persistenceUnitjournalPersistenceUnitusePersisttruepersistenceUnitjournalPersistenceUnitusePersisttrue
> due to the incorrect if test in the JpaComponent:
> {noformat}
> // lets interpret the next string as a class
>         if (path != null) {
>             // provide the class loader of this component to work in OSGi environments as camel-jpa must be able
>             // to resolve the entity classes
>             Class<?> type = getCamelContext().getClassResolver().resolveClass(path, JpaComponent.class.getClassLoader());
>             if (type != null) {
>                 endpoint.setEntityType(type);
>             }
>         }
> {noformat}
> path is not null, but it is the rest of the string and not the entityname. e.g it should not start with ? if it is an entityname - else it is the options.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira