Top "Cglib" questions

CGLib (Code Generation Library) is a run time code generation library for the Java platform licensed under the Apache 2.0 license.

How can I create a dynamic proxy in java that retains parameter annotations on methods?

I currently am trying to proxy some existing JAX/RS resources, in order to allow me to use the Hibernate …

java reflection cglib javassist
CGLIB with spring throws IllegalAccessError

I have a spring app with aop enabled using cglib proxies for logging: <?xml version="1.0" encoding="UTF-8"?> <…

proxy weblogic spring-aop oc4j cglib
Exception setting property value with CGLIB

After attaching newly backuped database, I'm getting an exception: Caused by: org.hibernate.PropertyAccessException: exception setting property value with CGLIB (…

java hibernate cglib
Maven - Failed to resolve artifact - cglib:cglib-nodep:jar:null

I'm trying to build a large project and failing with the following error: [INFO] ------------------------------------------------------------------------ [INFO] Building Utilities [INFO] task-segment: […

maven cglib
Superclass has no null constructors but no arguments were given. Spring Integration

I'm developing web application supported by Spring Integration. I'm using 1.0.4.RELEASE. I use CGLib proxies. I have a transactional message …

spring messaging spring-integration cglib
How can I create dynamic proxy for final Class?

In short: 1. I have some final class that I want to create dynamic proxy for it. How can I do …

java proxy mocking powermock cglib