Simple java-like CRUD generator

Is there a simple, lightweight rockd form generator crud in java?

I have a desktop application that uses spring + hibernate, and I just skip a bunch of gui panels that allow me to edit some database objects. Pretty simple attribute-editable forms, so I have to use some tool to automate the process. I do not need to create a DAO / pojo / bean / controller / service.

I read about this in other questions, but all the solutions seem to be related to installing the whole structure and creating complex custom Java code. I just need simple swivel panels.

+4
source share
1 answer

I do not believe that there is something like what you are looking for. However, why not create a web application using Grails (or Rails or some other favorite web infrastructure of yours) that contains web services that work with the database and then simply invokes web services from your desktop application?

0
source

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


All Articles