Eclipse POJO Extension Plugin

Does anyone know about a good POJO Eclipse generator? The generating getter \ seters and the constructor from the field functions are really nice, but it would be useful to associate this with the new \ POJO class dialog.

+3
source share
1 answer

This is not an Eclipse plugin, but one way to generate Java beans. Define the schema using the Relax NG Compact syntax , convert it to an XML schema (xsd file), and generate Java code using JAXB ( xjc ).

0
source

Source: https://habr.com/ru/post/1698231/


All Articles