#auto-dao
auto-dao
is a simple, scalable framework that database access .
##Quick Start
auto-dao
dependent on spring framework
-
basic spring config detail ;
DataSource
、JdbcTemplate
、DataSourceTransactionManager
-
auto-dao config
-
The parse of entity-table-relation,default is HumpUnderLineParse ;
-
The detail operator of db,default is MySqlJdbcTemplateOperator ;
-
The type of db,default is Mysql ;
auto-dao
create auto-config by spring boot ; detail
##Expand
default auto-dao
support access mysql by wrapper JdbcTemplate ,entity-table-relation is hump-underline(class CusUser ;table T_Cus_User) ;
Expand need to complete two steps:
- implements
Operator
- implements
Parse
more about spring boot is here