import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import java.io.Serializable;
// 实体类示例
@TableName("user") // 指定数据库表名
public class User extends Model<User> implements Serializable {
private Long id;
private String name;
private Integer age;
private String email;
// 省略getter和setter方法...
}
// Mapper接口示例
public interface UserMapper extends BaseMapper<User> {
// 这里可以写自定义的数据库操作方法
}
// 使用MyBatis-Plus的Service接口示例
public interface UserService extends IService<User> {
// 这里可以写自定义的业务逻辑方法
}
// 使用MyBatis-Plus的Service实现类示例
@Service
public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements UserService {
// 直接使用ServiceImpl中提供的方法即可
}
// 在Spring Boot启动类上添加@MapperScan注解,扫描Mapper接口
@SpringBootApplication
@MapperScan("com.example.mapper") // 替换为你的实际Mapper接口包路径
public class MyApp {
public static void main(String[] args) {
SpringApplication.run(MyApp.class, args);
}
}
这个代码示例展示了如何在Spring Boot项目中使用MyBatis-Plus。首先定义了一个实体类User
,使用@TableName
注解指定了对应的数据库表名。然后定义了一个UserMapper
接口继承自MyBatis-Plus的BaseMapper
。接着定义了一个服务接口UserService
和它的实现类UserServiceImpl
。最后在Spring Boot的启动类上使用@MapperScan
注解指定了Mapper接口的位置。这样就可以使用MyBatis-Plus提供的各种便利来操作数据库了。