I use javassist to generate code.
Now I need to find the field which implement Map or Collection(Set or List), I can not find the key in javassist tutorial, how to do it? Thanks very much!
I use javassist to generate code.
Now I need to find the field which implement Map or Collection(Set or List), I can not find the key in javassist tutorial, how to do it? Thanks very much!
Copyright © 2021 Jogjafile Inc.
Basically, you have to iterate over all fields, get all super classes and interfaces of each field type and check for types you need.
will print