springboot_service_业务层02_MP(MyBatisPlus)方式

文章展示了在SpringBoot项目中,如何使用MyBatisPlus的IService及其实现类ServiceImpl来处理数据。IBookService接口继承了IService并指定泛型为Book实体类,BookServiceImpl扩展了ServiceImpl,实现了IBookService。在测试类中,通过@Autowired注入bookService并调用getById方法查询数据。
摘要由CSDN通过智能技术生成

service接口,继承MP的IService

泛型为 实体类

package com.example.demo07.service;

import com.baomidou.mybatisplus.extension.service.IService;
import com.example.demo07.dto.Book;


public interface IBookService extends IService<Book> {

}

service实现类

extends ServiceImpl<BookDao, Book>

ServiceImpl 实现了 IService 接口,

不必自己去实现 IService 接口 中的方法

package com.example.demo07.service.impl;

import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.example.demo07.dao.BookDao;
import com.example.demo07.dto.Book;
import com.example.demo07.service.IBookService;
import org.springframework.stereotype.Service;

@Service
public class BookServiceImpl extends ServiceImpl<BookDao, Book> implements IBookService {
}

测试类

package com.example.demo07.service;

import com.example.demo07.dto.Book;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;


@SpringBootTest
public class BookServiceTestCase {

    @Autowired
    private IBookService bookService;

    @Test
    void testGetById(){
        //getById继承自IService
        Book book = bookService.getById(3);
        System.out.println( book );
    }
}

结果

Creating a new SqlSession
SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@66a5755] was not registered for synchronization because synchronization is not active
JDBC Connection [com.mysql.cj.jdbc.ConnectionImpl@7980cf2c] will not be managed by Spring
==>  Preparing: SELECT id,type,name,description FROM book WHERE id=?
==> Parameters: 3(Integer)
<==    Columns: id, type, name, description
<==        Row: 3, 文学, 葡萄牙的高山, 苦难
<==      Total: 1
Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@66a5755]
Book(id=3, type=文学, name=葡萄牙的高山, description=苦难)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值