Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Review jOOQ's reflection usage for JDK 9 / Jigsaw compatibility #5667

Closed
lukaseder opened this issue Nov 13, 2016 · 1 comment
Closed

Review jOOQ's reflection usage for JDK 9 / Jigsaw compatibility #5667

lukaseder opened this issue Nov 13, 2016 · 1 comment

Comments

@lukaseder
Copy link
Member

lukaseder commented Nov 13, 2016

There are two kinds of reflection usage in jOOQ:

  1. The one employed in DefaultRecordMapper. Here, the Javadoc should document jOOQ's expectations towards third party modules, which might expose POJOs that need to be "opened" by the module definition, for reflection to work
  2. The one employed in jOOQ's internals to avoid explicit dependencies on JDBC drivers, e.g. ojdbc's Connection.createARRAY() calls. These should work with JDK 9 as well, as they only use public API, but you never know.

This issue should check for JDK 9 compatibility and document any caveats.


See also:

@lukaseder
Copy link
Member Author

No major issues found as internals are not using any reflection magic if not needed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant