Tagged Questions

cglib is a Java Code Generation Library. It is used to extend Java classes and implements interfaces at runtime.

learn more… | top users | synonyms

9
votes
5answers
2k views

Slow to start after upgraded to Spring 3

I use Struts2 and my application has thousands of action classes managed by Spring. I used Spring 2.5.6 before and my application starts quickly. But when I changed Spring to 3.0. I got a extremely ...
6
votes
3answers
3k views

How to force Hibernate 3.3 or 3.5 to use CGLib instead of Javassist?

Is it still possible to force Hibernate 3.3 or 3.5 to use CGLib instead of Javassist? In my properties file, I set hibernate.bytecode.provider = cglib But this doesn't seem to do it. Any ...
6
votes
3answers
777 views

Retain annotations on CGLIB proxies?

Am trying to create an object using an AOP framework which uses CGLIB to create proxy objects. Strangely enough, the "enhanced" proxy object is devoid of ANY annotations the previous class had! Can ...
5
votes
3answers
521 views

Performance problems when using lots of AOP request scoped beans

I'm working on a semi-large application using Spring 3 and am running into performance problems when throwing hundreds of users at it at once. I'm using several request scoped beans using Spring's ...
5
votes
3answers
205 views

How to know the line of a bug in a spring generated bean?

I've got a website build with Spring and jpa (by hibernate). I've got a bug and I don't know how to identify the line where the bug appears. I can't debug it on my ide because it's a live version ...
5
votes
3answers
1k views

Are there alternatives to cglib?

Just out of curiosity, are there any (stable) open source projects for runtime java code generation other than cglib? And why should I use them?
4
votes
1answer
71 views

How to intercept object creation in Java

I have a little weird requirement.I guess. I'd like to use a custom Proxy I created to decorate all object that implements an specific interface, but I need this to be transparent to the code itself. ...
4
votes
1answer
314 views

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 Validator's method validation support. However, when I proxy my class (currently using cglib ...
3
votes
1answer
47 views

method annotations null when proxying via CGLIB

I'm experiencing a strange behaviour when looking via reflection for annotations on a method belonging to a class proxied via CGLIB. We use CGLIB in Spring, and if I annotate a method only with an ...
3
votes
3answers
106 views

Java Annotation and Processor to mark a method as so it can be called once and only once?

I need to be able to mark methods so that they throw a RuntimeException if they are called more than once. I am trying to enforce some single assignment semantics and the number of parameters to my ...
3
votes
2answers
705 views

Spring - Classcast exception as CGLIB proxy cannot be forced

Here's the scenario that's driving me nuts. I have a class that has a lookup method - createOther() createOther should create an object of type Other. Other implements OtherInterface and in addition ...
3
votes
1answer
140 views

How is the Java Service Provide API supposed to work?

It seems like everybody has had an unpleasant brush with the Java Service Provider, that thing you can do with a file named like META-INF/services/com.example.Interface, but that nobody uses except ...
3
votes
2answers
334 views

Spring annotations conflicts with my design guidelines

Overview Using Spring 3.0.1 (annotation configuration) Current configuration is using CGLib as proxy creator but this is not my preference Transactions are annotation configured without any ...
3
votes
2answers
5k views

Spring - Weird Error in Bean Creation

Any idea why I am getting this exception? Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'myService' defined in class path resource [context.xml]: ...
2
votes
0answers
63 views

ASM or CGLIB analog for Dalvic

I'm looking for a CGLIB analog usable for Dalvic bytecode. Is there such library in Android World ? Maybe, there is a way to translate CGLIB result to Davlic bytecode on-the-fly ?
2
votes
2answers
317 views

Mixing JDK and CGLIB proxies within Spring

I have an application running with Spring, and I'm using AOP in some places. Since I want to use the @Transactional annotation at interface level, I have to allow Spring to create JDK proxies. So, I ...
2
votes
1answer
169 views

cglib - MethodInterceptor & finalize?

I use cglib MethodInterceptor to wrap a service. In each call to the service it's supposed to open data session, pass call to the service and finally close the session. However, I noticed it ...
2
votes
1answer
154 views

Which library to choose for generating classes at runtime

I need to extend classes at runtime, particularly to detect changes made to classes state. If it's possible I would like to be able to detect changes by intercepting field assignments, if not ...
2
votes
2answers
407 views

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] ...
2
votes
2answers
400 views

Gson serializing Spring beans

I am using Gson 1.6 and Spring Framework 3.0 for a Java web app on WebSphere 6.1. I have some Spring beans for which the actual instance is a CGLIB proxy. When I attempt to serialize these beans via ...
2
votes
1answer
126 views

boxing unboxing, cglib, spring and NoSuchMethodError mystery

I use Spring and GWt in my project. In few cases I've got a NoSuchMethodError thrown by CGLIB when I invoke a method of a spring bean proxy. If I look at the error, It shows me that it tries to find ...
2
votes
2answers
4k views

Abstract DAO pattern and Spring's “Proxy cannot be cast to …” problem!

I know this is very often asked , but I cannot find a working solution : This is my AbstractDAO : public interface AbstractDao<T> { public T get(Serializable id); //other CRUD operations } ...
2
votes
1answer
1k views

Javassist failure in hibernate: invalid constant type: 60

I'm creating a cli tool to manage an existing application. Both the application and the tests build fine and run fine but despite that I receive a javassist failure when running my cli tool that ...
2
votes
2answers
401 views

How can I double-enhance a class with cglib?

Here's the code: Patient patient = factory.createPatient(); Enhancer enhancer = new Enhancer(); enhancer.setSuperclass(patient.getClass()); enhancer.setCallback(new ...
1
vote
1answer
16 views

Mocking a property of a CGLIB proxied service not working

I'm having an issue when trying to mock a property of a service from within a Junit test: @ContextConfiguration("classpath:application-config.xml") @RunWith(SpringJUnit4ClassRunner.class) public ...
1
vote
1answer
53 views

hibernate class not found

I am new to hibernate and I'm trying to create a sample hibernate search project... when I try to run the project I get the following exception: Exception in thread "main" ...
1
vote
1answer
51 views

Spring AOP - Error Generating proxies

I'm using spring AOP's around advice to capture processing time of a transaction. I'm getting the following error during application startup error creating bean "coreMessageResourceAccesor" Could ...
1
vote
2answers
88 views

Java detect if class is a proxy

Is it possible to detect if a class is a proxy (dynamic, cglib or otherwise)? Let classes Aand B implement a common interface I. Then I need to define a routine classEquals of signature public ...
1
vote
1answer
107 views

Dynamically editing/creating classes in Java Android

I am looking for a way to dynamically define classes and instantiate them in Android, at runtime. From my understanding, this is already done in Android, I just need some help figuring it out. I can ...
1
vote
2answers
491 views

CGLib Mixin Example

Can somebody give me a good example for Java CGLib Mixin class usage? I've been digging around none of them seems simple enough.
1
vote
2answers
208 views

AbstractMethodError on deploy with @Transactional, Spring 2.5 and cglib

Hope you can help with this. I'm using the Spring @Transactional annotation to mark a method transactional, and I have the requisite <tx:annotation-driven transaction-manager="txManager"/>. I'm ...
1
vote
1answer
266 views

CGLib and serialization

What I want to do is to serialize a class that implements a command pattern so that I can run it later. In best of all worlds, I would like to serialize an anonymous class (I'm aware of the problems ...
1
vote
0answers
205 views

does anyone have an example code for using cglib MulticastDelegate to do something like C# events?

Whilst C# has language support for Delegation and Events in Java we have to either use anonymous inner classes for the binding else use reflection code ...
1
vote
4answers
191 views

Java, creating interface dynamiclly?

I'm looking for a solution to create an interface in runtime. I don't really know if this is possible in anyway. Problem: I've got a OSGi service which publishes a Map<String,String> where the ...
1
vote
1answer
218 views

How can i get my CGLIB proxied classes working with spring framework's ReflectionUtils?

I have a cglib proxied class because the impl uses both the @Repository @Transactional annotations. I would like to use spring's reflection utils to set the field value for mocking out one of the ...
1
vote
1answer
159 views

cheap way to mock an interface with no runtime overhead

Suppose I have an interface with lots of methods that I want to mock for a test, and suppose that I don't need it to do anything, I just need the object under test to have an instance of it. For ...
1
vote
2answers
429 views

Hibernate proxy serialization and receive on client side

I lack understanding of how does the generated proxy class object (CGLib enhanced POJO) is transferred to the remote client and still retains its ability to generate Lazy Init. Exceptions. Does that ...
1
vote
1answer
420 views

Slow CGLIB Performance using Callback Filters

I'm noticing terrible speeds when trying to use CGLIB with a callback filter (on tens of thousands of objects) but I'm unable to find any information about optimizing CGLIB. For a search/list ...
0
votes
1answer
9 views

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 (set ...
0
votes
1answer
100 views

Spring, CGLIB: why can't a generic class be proxied?

I'd like to ask about the root cause of the exception: Caused by: java.lang.ClassCastException: java.lang.Class cannot be cast to java.lang.reflect.ParameterizedType which happens in Spring when ...
0
votes
0answers
18 views

LazyLoader from cglib the real object is loaded only once

I am trying to find the place in cglib source code wher this check happens: "Once the real object is loaded, it is used for every future method call to the proxy instance." It's about ...
0
votes
2answers
281 views

Spring: Is CGLIB required for injection of a concrete class using @Resource

I have configured Spring 3.0.6 with AspectJ LTW using spring-instrument.jar and: <context:load-time-weaver aspectj-weaving="on" ...
0
votes
0answers
57 views

Applying CGLib Proxy from a Annotation Processor

I have a working Annotation Processor that processes my custom annotation at compile time, I want to apply a CGLIB proxy to apply logic to some of the methods using MethodInterceptor, I have the two ...
0
votes
2answers
152 views

How to override instance/concrete class's method runtime? (e.g. reflection, cglib)

What I wanna do is a method that can generate instance of Class X (a class variable passed in arg) and override some of it's method More specifically, the parent class X I want to override ...
0
votes
0answers
33 views

cglib - how to view source of generated classes

Is there some way to actually view the source code associated with the automatically generated cglib classes? A proxy class is being generated and I want to see whats going on inside one of the ...
0
votes
0answers
56 views

Sending an object to a EJB becomes null when being created with CGLIB

I am creating a proxy to an object (A SERIALIZABLE object) in the client layer, and send this object to a EJB (Using EJB 3.0 on Weblogic 10.3.4 server). In the EJB, the parameter is null! I made sure ...
0
votes
0answers
102 views

CGLIB cannot subclass a class implementing an interface in Spring

Here is a Class: class A implements B { //some code } Because I need to intercept some methods that the interface B hasn't, so I configure using CGLIB to proxy the class A in Spring Framework; ...
0
votes
2answers
105 views

In Spring, why are line numbers lost for CGLib on a POJO?

Spring MVC web app: I have a stack trace w/o line numbers (shown at bottom). I presume that this is due to CGLib running on the controller. But this is odd to me, the actual exception occurs in ...
0
votes
1answer
253 views

CGLib Proxy for Integer (Final class) in Spring MVC

I need such a usage: For each request I want to inject userId into DemoController But because of being a final class without empty constructor I can not inject it. What is the best practice in such ...
0
votes
1answer
168 views

Integration tests fail - autowiring issue with Grails

For whatever reason, when I try to run any integration test, I'm getting the following: Initialization of bean failed; nested exception is org.springframework.beans.ConversionNotSupportedException: ...

1 2