Please recommend using the Java framework to easily implement crud

I know ror can easily complete crud, but is there a similar framework in Java to make crud simple instead of entering boring SQL statements?

Solution

Are you looking for a method to map data to objects and return (object relational mapping, usually abbreviated as ORM or or / M), or a method to automate CRUD operations into a set of data? The two are connected, but the answer may vary slightly according to your actual goal

For example, automatic or / M can be done with anything that supports the Java persistence API Hibernate is a good choice because it is actually the origin of JPA

However, crud processing not only means storing data, but also involves user permissions and dynamically creating views of four operations; Or / M is only a subset of crud

The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
分享
二维码
< <上一篇
下一篇>>