Re: JCA Provider Service

2019-01-07 Thread Will Sargent
That's really fascinating, I had no idea. Looks like it's documented in Step 4: Create a Module Declaration for Your Provider with follow up in Step 8.1: Configure the Provider

Re: JCA Provider Service

2019-01-07 Thread Alan Bateman
On 07/01/2019 15:52, Will Sargent wrote: I didn't know that a service provider mechanism was added in Java 9.  The ServiceLoader pattern I'm using has been around since JDK 1.7 if that's what you mean: https://www.oracle.com/technetwork/articles/javase/extensible-137159.html I don't use Java

Re: JCA Provider Service

2019-01-07 Thread Will Sargent
I didn't know that a service provider mechanism was added in Java 9. The ServiceLoader pattern I'm using has been around since JDK 1.7 if that's what you mean: https://www.oracle.com/technetwork/articles/javase/extensible-137159.html I don't use Java 9, nor do I know any companies or individuals

Re: JCA Provider Service

2019-01-06 Thread Alan Bateman
On 07/01/2019 03:46, Will Sargent wrote: Hi all, I've put together a small project that will autoload custom JCA providers, bypassing the need to append to the java.security.properties file (which is not well documented), allowing for some programmatic access, and adding some logging. Have