Javassist is a class library for editing bytecode in java.

learn more… | top users | synonyms

0
votes
0answers
11 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
1answer
33 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
29 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
27 views

Can you use javassist to grab all the classes in a project?

Can you enumerate all the classes in a project or on the classpath using Javassist?
-2
votes
0answers
27 views

Java with Javassist: Making enum type for embedded language

I'm making a strong-typed embedded language interpreter upon java, and I want to support enum at the language like this: type Color=(Red, Blue, Green); type Week=(Monday, Tuesday, Wednesday, ...
-2
votes
0answers
19 views

javassist - the “search” equivalent of “replaceClassName”

in Javassist CtClass, there is a method: void replaceClassName(java.lang.String oldName, java.lang.String newName) it's used to, in the class file, replace the oldName with the newName. The bad ...
1
vote
1answer
48 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
0answers
21 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
60 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
49 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
57 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
25 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
41 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
34 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
75 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
163 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
135 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
81 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
71 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
130 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
140 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
83 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
99 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
62 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
62 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
88 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
0answers
106 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
76 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
63 views

javassist exception

public class PracticeJavassist2 { @Test public void test2() throws InstantiationException, IllegalAccessException{ ProxyFactory factory = new ProxyFactory(); ...
0
votes
0answers
60 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
90 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
76 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
527 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
237 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
187 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
420 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
175 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
59 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
62 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
122 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
170 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
73 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
124 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
191 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 ...
2
votes
1answer
152 views

Add annotation to a parameter on a new method created with Javassist

I am in need to add an annotation to a method parameter. The method is previously created with javassist like: CtClass cc2 = pool.makeClass("Dummy"); CtMethod method = CtNewMethod.make("public ...
0
votes
1answer
335 views

Changing part of method body with javassist

Let me first explain my goal ... I need to change part of a method body, I mean, inside the method I have several calls but just one of these calls need to be change to use two parameters instead of ...
0
votes
1answer
150 views

How to make newInstance from ctClass in javassist?

I can make a instance: Class<?> jClazz = Class.forName(XXXX); jClazz.newInstance(); but I need modify the class by javassist: CtClass ctClass = cp.get(path); CtConstructor m = ...
0
votes
0answers
133 views

When will Javassist 3.17.0-GA be available

Anyone know when Javassist 3.17.0-GA will be made available? There is a bug in Javaassit (fixed in 3.17.0-GA) that is breaking PowerMock when used with Java 7: ...
1
vote
2answers
188 views

Play 1.2.x on WebSphere 8

I want to deploy a simple Play (1.2.4) application to WebSphere 8. I have the application working locally on Windows. Both are Java 1.6. I created a WAR file using: play clean play war --zip -o ...

1 2 3