An open API service indexing awesome lists of open source software.

https://github.com/pjt3591oo/spring-mybatis

mybatis 연동샘플
https://github.com/pjt3591oo/spring-mybatis

database java mybatis mysql spring table

Last synced: 2 months ago
JSON representation

mybatis 연동샘플

Awesome Lists containing this project

README

          

# version

* java 1.8

# sample table

* database name : test
* table name : test

```mysql
mysql> DESC test;
+---------+------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+---------+------------------+------+-----+---------+----------------+
| id | int(11) unsigned | NO | PRI | NULL | auto_increment |
| column1 | int(11) | YES | MUL | NULL | |
| column2 | int(11) | YES | | NULL | |
| column3 | int(11) | YES | | NULL | |
| column4 | int(11) | YES | | NULL | |
| column5 | varchar(255) | YES | | NULL | |
| column6 | varchar(255) | YES | | NULL | |
| column7 | varchar(255) | YES | | NULL | |
| column8 | varchar(255) | YES | | NULL | |
| column9 | varchar(255) | YES | | NULL | |
+---------+------------------+------+-----+---------+----------------+
10 rows in set (0.03 sec)
```