On Wed, 2016-02-03 at 10:31 +0100, Markus Geiß wrote:
> Hey all,
> 
> hope this finds you well. ; o)
> As part of our incubation (Apache Fineract) we need to replace our current
> JPA implementation (Hibernate).
> 
> Given that we are now part of the Apache family we'd like to use Apache
> project whenever possible.
> 
> Right now we are facing issues with the enhancement mechanism and
> looking for some advice on how to proceed. None of our entites could be
> enhanced, but we are not sure why.
> 
Could you provide the error messages you're getting?  I recently started
using OpenJPA 2.4.0 again after a hiatus and found that I had to compile
my entities with Java 6 bytecode.  Here's the relevant part of the
pom.xml:

<plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.5</version>
        <configuration>
                <compilerVersion>1.6</compilerVersion>
                <source>1.6</source>
                <target>1.6</target>
                <debug>true</debug>
                <verbose>false</verbose>
        </configuration>
</plugin>



> Here are some, maybe, useful information, we use:
> - Java 8
> - Spring Data JPA
> - Hibernate 4.3
> 
> Best,
> 
> Markus
> 
> .::YAGNI likes a DRY KISS::.                                    


Reply via email to