# springboot **Repository Path**: veromca/springboot ## Basic Information - **Project Name**: springboot - **Description**: springboot-mybatis 精简实例 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 4 - **Forks**: 1 - **Created**: 2016-12-18 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README git地址: https://git.oschina.net/veromca/springboot.git Java bean User private String id; private String name; private Integer age; private String password; 数据库脚本见:/springboot/src/main/resources/db_user.sql http接口测试地址: http://localhost:8080/user/getById?id=1 localhost:8080/user/saveUser?id=2&name=刘德华&age=40&password=123456 localhost:8080/user/saveUser?id=3&name=delete&age=40&password=123456 localhost:8080/user/saveUser?id=4&name=lisi&age=40&password=123456 localhost:8080/user/findUserList localhost:8080/user/updateUser?id=2&name=程序猿&age=30&password=123456 localhost:8080/user/deleteById?id=3 localhost:8080/user/delete?name=lisi