Skip to content

Instantly share code, notes, and snippets.

@manxisuo
Last active June 12, 2017 02:37
Show Gist options
  • Save manxisuo/7fb1299d6a344ce736a1 to your computer and use it in GitHub Desktop.
Save manxisuo/7fb1299d6a344ce736a1 to your computer and use it in GitHub Desktop.
MyBatis使用SQLite3配置
# 数据库驱动
jdbc.driver=org.sqlite.JDBC
# 数据库文件位置(数据库文件为little.db,位于类路径下)
jdbc.url=jdbc:sqlite::resource:little.db
# 用户名(默认root)
jdbc.username=root
# 密码(默认root)
jdbc.password=root
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment