Javassist is a class library for editing bytecode in java.
-1
votes
0answers
53 views
Modifying a class in OSGi on runtime and reload
I developed an activemq application and mapped the single components into different osgi bundles. So there is a broker-bundle, a custom-made service bundle for the broker, producer-bundle, ...
1
vote
1answer
36 views
Instantiate an object from source code compiled on-the-fly
I would like to know if there is a posibility to instance a class of an external file
For example:
Oreja oreja_object = getClassFromExternalFile("C:\oreja_file.java");
Thanks,
Cristina.
0
votes
0answers
23 views
Can not run Junit test at the first time after replacing final modifier by using Javassist
I want to test class A and there are 2 method (C and D) in classA. Class A is final and method D calls method C. I wrote test code for method C. But I dont want to have a duplicated code so I used spy ...
0
votes
1answer
8 views
Using Javassist to modify code in other packages?
Is there a way to write a javassist program in a package other than the src folder that can modify other classes (either in the src folder or subfolders of the src folder). I have messed around with ...
-1
votes
0answers
14 views
Javassit Writing Directly to a JAR
The following works until the ERROR comment line. The intent is to write directly to the JAR.
import javassist.*;
class Injector
{
public static void main(String[] argv) throws Exception
{
...
0
votes
1answer
24 views
Javassist using a jar file
How do I add a jar file to the search path for javassist and have it work correctly? I am trying to modify a jar file without unjaring then rejaring.
import javassist.*;
class Injector
{
public ...
0
votes
0answers
14 views
LinkageError : I want to modify my CtClass and call ToClass() again
Here is my problem :
I want to run Junit tests on a class, modify this class, and then run another Junit test.
I am creating a CtClass, inserting tests into it.
I transform this CtClass to a Class, ...
0
votes
0answers
27 views
Using Javassist on Eclipse
I'm starting with Javassist, I have implemented an example of Hello World with following code:
HelloWorld.java
public class HelloWorld {
public static void main(String[] args) {
new ...
0
votes
2answers
78 views
Passing dynamic parameters to an annotation
I wonder if there is a possiblity to pass dynamically values to an annotation attribute.
I know that annotation are not designed to be modified but I'm using Hibernate Filters and condition to be put ...
0
votes
1answer
61 views
Hibernate JavassistLazyInitializer: problems with validation
I'm using Spring to develop my application using Hibernate and JPA as persistence API in a MySQL database. When I fetch most of my objects from the database, they have their attributes initialized ...
0
votes
0answers
35 views
Can you use javassist to grab all the classes in a project?
Is there a way to use javassist to find a list of existing java classes in the system search path? I know you can use ".getDefault()" to return the system's default search path, is there a way list ...
1
vote
1answer
68 views
Basic block logging in Java using javaagents
My goal is to instrument a small amount of code at the beginning of every basic block of some Java bytecode. The purpose is to record the execution path through basic blocks. Currently, I am using ...
0
votes
1answer
38 views
Getting a class's initializers using Javassist
Using Javassist, I am creating coupling between classes. However there is obviously a problem when I try to create an instance of a class that takes in parameters. I would really like to be able to ...
0
votes
1answer
75 views
Javassist's CtMethod.insertAt(line,src) instruments code at the wrong bytecode position
My goal is to insert a little bit of instrumentation code at the beginning of each basic block of code. It seems like a fairly simple task with Javaassist's ControlFlow.Block and CtMethod.insertAt(). ...
0
votes
0answers
62 views
Value in object gone due to javassist using hibernate
I have two beans in a java application using hibernate to store language independent and language dependent values. On first access of a language dependent field the language beans are loaded and (for ...
1
vote
1answer
70 views
Modifying line numbers in Javassist
So I have been using Javassist a bit lately, and I have run into a question I haven't been able to find an answer to. The insertAt method of CtMethod allows you to insert code at a specific line ...
0
votes
2answers
33 views
Javassist CtMethod.make() gives “syntax error” on array initialization using empty brackets
I am using Javassist to build a runtime class. I am creating a CtMethod:
CtMethod m = CtMethod.make(constructMethodSource, bclass);
Inside "constructMethodSource" is this line which is a legitimate ...
0
votes
1answer
48 views
Register EJB stateless bean programmatically
If I have some class A, is there a way to register it as a stateless session bean in run-time after the server has fully started? This class is itself created in run-time via Javassist library and ...
1
vote
1answer
45 views
How to use javassist to change the eclipse's compilation?
Eclipse can compile java source code to byte code automatically. I write some enhancers with javassist, which can modify the existing byte code and add some new fields and methods to them.
How to ...
0
votes
1answer
102 views
Solving JVM “Incompatible object argument for function call” error (javassist instrumentation)
I'm having JVM (1.6.0b33) throw java.lang.VerifyError (Incompatible object argument for function call) on one of my classes. The class was instrumented (just this one method) with javassist (using ...
0
votes
1answer
238 views
Instrumenting with Javassist entity classes used by Hibernate
I have developed a library that generates at runtime especialization classes of an abstract class given certain annotations in the abstract class.
So my library is used a bit like:
X x = ...
0
votes
1answer
191 views
javassist Field check initialization
I am currently implementing an Annotation that forces the fields to respect a condition through javassist. I would like to check if a field is initialized when it is being read... so, currently, I am ...
1
vote
1answer
92 views
Why the create method of Javassist ProxyFactory does not invoke the right constructor based on the args parameter?
Consider the following class declaration:
class A{
private String x;
public A(String x) {
this.x = x;
}
}
When I try to create a proxy for the class A with the javassist ...
1
vote
0answers
83 views
Jackson JSON: dynamically change the view
Good time!
Say there is such a class:
public class Individual {
@JsonProperty("passport")
private Passport passport;
// getters ans setters
}
There are two use cases. First, when an ...
1
vote
1answer
183 views
how to change field‘s initial value using javassist
I'm trying to mock some services in my developing env. The serviceFactory code is something like:
public class ApiFacadeImpl implements ApiFacade {
private OneService oneService = null;
public ...
0
votes
1answer
158 views
Generate Invokedynamic with Javassist
I am trying to do something relatively simple, I think. Take for example the following Java bytecode for a method doSomething(int):
public java.lang.String doSomething(int i);
0 iload_1 [i]
1 ...
1
vote
0answers
98 views
spring + JPA: “Extend” entity classes at load-time from configuration
In my small project I have 3 entity classes. These classes should be "extendable" by the end user by configuration (eg. human readable text based, probably xml). With extendable I mean adding fields ...
2
votes
1answer
119 views
javassist not injecting annotation at existing field
I'm trying to inject JAXB annotation at runtime using Javassist. I have written following code:
public class AssistAnnotationInjector {
public static void addAnnotationRunTime(String className, ...
0
votes
1answer
70 views
Javaassists and Java Web Start: class sign doesn't match the others classes sign is the same package
i'm using javaassists to modify the behaviour of a class in runtime. When i run the app in my computer all works fine.
But this app is launched by the users with Java Web Start, so that the .jar of ...
-2
votes
1answer
68 views
Opcode for identifying switch case in javassist
How to find the op-code for identifying switch case in a java class using javassist or asm.
I used the Below Snippet
List methods = lClassFile.getMethods();
for (Object m : methods) {
...
0
votes
0answers
93 views
How to access fields or non-public methods via reflection in Hibernate generated javassist classes?
In my code I need to set value of a private field declared in a Hibernate entity via reflection API (Wicket/PropertyModel).
When invoking field.setValue() on the entity, the value is not changed. The ...
2
votes
1answer
118 views
Is it possible create a single dynamic proxy that can add functionality to any concrete class?
I'll give a brief overview of my goals below just in case there are any better, alternative ways of accomplishing what I want. This question is very similar to what I need, but not quite exactly what ...
0
votes
1answer
87 views
How to get constant pool table with javassist
How we can get the constant pool table from the class file using javassist? I hava wtitten the code till here,
ClassPool pool = ClassPool.getDefault();
pool.insertClassPath(filepath);
CtClass cc = ...
1
vote
1answer
70 views
javassist exception
public class PracticeJavassist2 {
@Test
public void test2() throws InstantiationException, IllegalAccessException{
ProxyFactory factory = new ProxyFactory();
...
0
votes
0answers
63 views
Instrumentation retransformation doesn't appear to be working
I'm just experimenting with Java Instrumentation because it's very interesting and I'd like to know more about it. I'm using it in conjunction with the javassist library to make bytecode manipulation ...
0
votes
1answer
96 views
Javassist - is it possible to change class from private to public
Is it possible, using javassist apis, to change a class inside a jar from private to public.
I already know how to unzip a jar, load ctclass, make change such as modify derived class name, then zip ...
0
votes
0answers
86 views
Custom serialization with Javassist-generated proxy class
I have a proxy class generated by Javassist's ProxyFactory for a serializable class. I need to send an instance of the target class represented by the proxy class over RMI, but the remote client does ...
1
vote
1answer
714 views
Javassist add method and invoke
I'm stuck with javassist. I've added a new method to my object class on runtime.
My object class:
package tmp3;
public class Car {
public Car(){}
}
My test class:
package tmp3;
import ...
1
vote
1answer
254 views
Use javassist to modify fields that use getters and setters in a class constructor
I am trying to modify the following fields in a class constructor using javassist :
Label Label1 = new Label(new StringBuilder().append(user.name));
Label Label2 = new Label(new ...
0
votes
1answer
218 views
Javassist in Android is missing class methods found by reflection
I am trying to use javassist to examine the contents of an Android class. The purpose of why I'm doing this is irrelevant, please explain to me why the following happens:
When I examine the class ...
2
votes
1answer
53 views
can srcgen4javasssit be used to generate source code of my existing class?
i am working with javassist and willing to regenerate the source code / alter the classes. but the problem is that i am unable to find a library to generate source code of my existing classes from ...
1
vote
1answer
473 views
Hibernate 4: HQL and Inheritance - fetching collections and javassist
I'm having this scenario: parent class Person, children classes: Individual and Enterprise. I'm mapping this classes with joined-subclass strategy like this:
<hibernate-mapping>
<class ...
1
vote
3answers
197 views
Can byte-code manipulation change the return type of a Java method at run-time?
I was wondering if it is possible to do something like this with byte-code manipulation:
public class Foo {
public int getBlah() {
return 1;
}
}
public void hi(int x) {
...
0
votes
1answer
66 views
Using javassist, how can you get the type a NewExpr is being assigned to?
This information appears to be available when calling NewExpr.replace("replacement code"), using $r.
I can't find a way to actually get the type it is assigned to.
This is necessary to distinguish ...
0
votes
0answers
70 views
Framework for application with catalog&data tables - Gui component
I'm developing an application that uses a Relational Database and I would like an opinion on a possible framework to use.
There are two types of tables in the DB:
1. Catalog tables (fixed structure - ...
0
votes
0answers
129 views
java code to decompile a class file to source code
there are a lot of java decomilers available but i need java program which converts the class to source code in order to rewrite it using javasssist. i have gone through many examples of javassist. ...
0
votes
1answer
202 views
Considerations for using ASM and Javassist in the same project
ASM and Javassist seem to have different advantages and shortcomings for generating/transforming Java bytecode.
For example, the byte code generation facility of Javassist is really easy to use since ...
0
votes
0answers
77 views
Interaction of javassist and java.lang.instrument.Instrumentation.appendToBootstrapClassLoaderSearch
Inside "public static void premain(String agentArgs, Instrumentation inst)", I invoked "appendToBootstrapClassLoaderSearch(myJar)" to add myJar into the search path of the bootstrap classloader.
Java ...
0
votes
2answers
128 views
How to get a name of a class member?
I want to be able to do something like this:
prepare form:
val formDescription = formBuilder(_.textField[User](_.firstName)
.textField[User](_.lastName)
).build
...
2
votes
1answer
200 views
Editing a native method class with javassist?
With Javassist, is there any way to inject code into a native method? In this case, I'm trying to make the OpenGL calls in my game print out their names and values when called, but all my attempts ...

