Skip to content

Consulting4J/GraalVMReflectionConfigGenerator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

GraalVMReflectionConfigGenerator

To help to generate the most complex part : reflect-config.json which graalvm native image build needed
if you use native-image-agent to track your application to generate the config your app need, you may have to build a very complex script to go through everything.
With this helper you could just put all the model class name in a file, then something like the following would be generated automatically.

{
"name":"com.yourcompany.Milestone",
"allDeclaredFields":true,
"allPublicMethods":true,
"fields":[
{"name":"date"},
{"name":"projectID"},
{"name":"description"},
{"name":"trafficLight"},
{"name":"creatorID"},
{"name":"createDate"},
{"name":"creatorName"},
{"name":"index"}
],
"methods":[{"name":"","parameterTypes":[] }]
},

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages