Absolutely. In the generation options, you can enable Lombok support and the tool will automatically generate code with @Data, @AllArgsConstructor, @NoArgsConstructor and other annotations, significantly reducing boilerplate code and making your entity classes much cleaner.
Yes. The tool includes a recursive parsing engine that deeply analyzes JSON structure. When it encounters nested objects, it automatically generates corresponding inner or separate classes, and handles generic collection types like List<T> and Map<K, V>, ensuring the generated code compiles directly.
In the generation options, you can enable JPA/Hibernate support. The tool will automatically add @Column, @Table, @Id and other annotations to fields, and derive appropriate database types from JSON data types, accelerating ORM mapping configuration.