https://github.com/codesmell/mybatisspring
MyBatis Spring Bookmarks
https://github.com/codesmell/mybatisspring
Last synced: 10 months ago
JSON representation
MyBatis Spring Bookmarks
- Host: GitHub
- URL: https://github.com/codesmell/mybatisspring
- Owner: CodeSmell
- Created: 2016-08-10T17:56:28.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-10T21:17:38.000Z (over 9 years ago)
- Last Synced: 2025-04-21T02:19:01.265Z (about 1 year ago)
- Language: Java
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;