-
1. Re: How to exclude entities from the scope of Errai JPA when compiling
csa Jan 27, 2015 3:43 AM (in response to vwjugow)Hi Victor,
There are currently only two options for hiding @Entity types from our JPA scanner.
1. Move the types to a non-translatable package
2. Put it in a jar/module without an ErraiApp.properties (note that will exclude the whole jar from scanning so Errai won't find any types in there)
Based on your description it does sound like we need a new feature for white/blacklisting JPA types though as it seems you're actually using the other JPA types on the client but you don't want them to be used by Errai JPA. If that's correct, can you create a JIRA for us?
Cheers,
Christian
-
2. Re: How to exclude entities from the scope of Errai JPA when compiling
vwjugow Jan 27, 2015 8:40 AM (in response to csa)Hi Christian,
thanks for getting back to me so quickly. Yes that is correct. Here's the jira ticket: [ERRAI-832] Add posibility to exclude Entities from Errai JPA scan - JBoss Issue Tracker
Thanks!
Victor.-