The goal of this project is to create a cross-database Data Access Object, with database generation and migration capabilities.
🎉 It is now integrated in this web framework
package project.entity;
import mg.uniDao.annotation.Field;
import mg.uniDao.annotation.AutoSequence;
import mg.uniDao.core.sql.GenericSqlDao;
import mg.uniDao.annotation.Collection;
@Collection
public class Region extends GenericSqlDao {
@Field(name = "region_id", isPrimaryKey = true)
@AutoSequence(name = "region")
private Integer regionId;
@Field(name = "region_description")
private String regionDescription;
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
- Clone the repository to your local machine.
- Run
mvn clean install
to install dependencies. - (For building jar) Run
mvn package -DskipTests=true
to build the project.