2 Repos
Generates mapper interfaces and model classes from database schemas to eliminate repetitive boilerplate code for MyBatis projects.
Distinct from Schema-to-Code Generators: Distinct from Schema-to-Code Generators: specifically generates MyBatis mapper interfaces and model classes from database schemas.
Explore 2 awesome GitHub repositories matching software engineering & architecture · MyBatis Mapper Generators. Refine with filters or upvote what's useful.
Mapper is a MyBatis-specific library that provides annotation-driven object-relational mapping, enabling single-table CRUD operations without writing SQL or XML. It uses Java reflection and field-level annotations to map entity fields to database columns, configure primary key generation strategies, and generate mapper interfaces and model classes from database schemas. The library distinguishes itself through several practical capabilities. It includes a safe operation guard that blocks delete and update calls lacking query conditions, preventing accidental full-table modifications. Its exam
Generates mapper interfaces and model classes from database schemas to eliminate repetitive boilerplate code.
This project is a Java persistence generator and database mapping tool designed to produce boilerplate persistence layer code. It translates database schemas and column comments into structured Java annotations and mapping files, replacing the need for manual configuration writing. The tool provides a visual interface for generating code and manages secure database access through SSH tunneling. It allows users to connect to private databases via encrypted tunnels to safely extract schemas without exposing the database to the public internet. The system includes capabilities for database sche
Generates mapper interfaces and model classes from database schemas to eliminate repetitive boilerplate code.