If you are using spring you can add to your application class:
@EntityScan("base.package.that.includes.converters")
Make sure this is on the application class that has the main spring annotation like @SpringBootApplication
Once you've done that it will setPackagesToScan for JPA entities which will find the converters and register them which will make the autoApply actually work.