1, JDBC和mybatis对比
jdbc:
开发效率低,代码多
需要进行connection,Statement和ResultSet的创建和销毁
重复代码较多,太冗杂
mybatis:
减少了connection等的销毁和创建
代码较少,并且业务代码和操作数据库代码分开,更便于开发
2,项目实现
开发工具:IntelliJ IDEA
新建项目:点击file——new——projects,选择spring initializr,点击next
然后再点击next,然后将java version改为8
然后选择依赖
然后就是内里java文件的创建
其中每一个文件中的代码
UserController.Java:
package com.first.mybatis_example.controller;
import com.first.mybatis_example.entity.User;
import com.first.mybatis_example.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
@RestController
@RequestMapping("/user")
public class UserController {
@Autowired
private UserService userService;
@RequestMapping("/getAllUser")
public List<User> findAll(){
return