Obfuscation and jOOQ

I am going to use jOOQ and I probably need obfuscation.

I don't know how jOOQ works under the hood. Will the obfuscation process give problems to the application?

+3


source to share


1 answer


jOOQ uses reflection internally:

  • build custom POJOs
  • to assign Record values to POJOs and vice versa
  • to call special Oracle ojdbc methods without creating a dependency on ojdbc
  • to call Postgres JDBC-specific methods for PGobject types


In these areas, obfuscation can cause problems when changing method names

+2


source







All Articles