Property not lazy loading with runtime bytecode enhancement, hibernate 5.2

I opened an issue on spring core requesting docs, I found a page in a spring book that suggests runtime bytecode enhancement only works with spring instrumentation. hibernate docs don’t suggest any 3rd party requirement. So I got that up and running, seeing this type of stuff in the logs

12:19:03,243 [DEBUG] Skipping enhancement of [com.sun.proxy.$Proxy334]: not entity or composite            [localhost-startStop-1] org.hibernate.bytecode.enhance.internal.javassist.EnhancerImpl.enhance(EnhancerImpl.java:155) (:)
12:19:03,439 [DEBUG] Skipping enhancement of [myapp.service.labTest.NoCoverageReportViewModel$$EnhancerBySpringCGLIB$$592c608]: not entity or composite [localhost-startStop-1] org.hibernate.bytecode.enhance.internal.javassist.EnhancerImpl.enhance(EnhancerImpl.java:155) (:)
12:19:03,529 [DEBUG] Skipping enhancement of [myapp.dao.loader.ProviderTestImportJobDao$$EnhancerBySpringCGLIB$$f176c5f2]: not entity or composite [localhost-startStop-1] org.hibernate.bytecode.enhance.internal.javassist.EnhancerImpl.enhance(EnhancerImpl.java:155) (:)

odd thing is, everything but the proxy is a service… so of course it would skip… but what is the proxy and why is it not picking up entities…