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

https://github.com/codesmell/mybatisspring

MyBatis Spring Bookmarks
https://github.com/codesmell/mybatisspring

Last synced: 10 months ago
JSON representation

MyBatis Spring Bookmarks

Awesome Lists containing this project

README

          

# MyBatisSpring (Bookmarks)

A simple partial application that manages persistence of Bookmarks.
Demonstrates how to setup MyBatis w/ Spring

/Volumes/dev/MyBatisSpring/src/main/db/db.sql

## Starting MySQL

$ mysql.server start

## Loading schema

$ mysql - u root < src/main/db/db.sql

## Interacting with SQL

$ mysql -u yoda -p
mysql> use bookmark;
mysql> select * from bookmark;