# mybatis_springboot_demo **Repository Path**: fancy171101034/mybatis_springboot_demo ## Basic Information - **Project Name**: mybatis_springboot_demo - **Description**: 这是我上手的一个mybatis_springboot_demo的项目,里面有CRUD,比较适合新手来联系。也比较简单。 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2021-07-13 - **Last Updated**: 2022-07-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### 第一步 导入数据库,修改数据库配置 ```sql CREATE TABLE `user` ( `id` int(11) NOT NULL, `username` varchar(255) DEFAULT NULL, `password` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; INSERT INTO `user` (`id`, `username`, `password`) VALUES (1, 'asin', '123456'), (2, 'fancy', 'fancy'), (100, 'root', 'root_password'); ``` ### 第二步 运行springboot ### 第三步 执行 >http://localhost:8080/findall >http://localhost:8080/findByid >http://localhost:8080/addUser >http://localhost:8080/deleteUserById >http://localhost:8080/updateUser