当前位置:主页 > java教程 > SpringBoot整合第三方

SpringBoot整合第三方技术的实现

发布:2023-04-14 11:15:01 59


给大家整理了相关的编程文章,网友怀欣可根据主题投稿了本篇教程内容,涉及到SpringBoot整合第三方、SpringBoot第三方整合、SpringBoot整合第三方相关内容,已被535网友关注,下面的电子资料对本篇知识点有更加详尽的解释。

SpringBoot整合第三方

整合Junit

在Boot环境下如何进行单元测设

  • 注解:@SpringBootTest
  • 类型:测试类注解
  • 位置:测试类上方
  • 作用:设置JUnit加载的SpringBoot启动类

例:

@SpringBootTest(classes = Springboot07JunitApplication.class)
class Springboot07TestApplicationTests {}

相关属性

classes:设置SpringBoot启动类

注:如果测试类在SpringBoot启动类的包或者子包中,可以省略启动类设置,也就是省略classes的设定。

import com.ityc.service.BookService;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
class Springboot07TestApplicationTests {

    @Autowired
    private BookService bookService;

    @Test
    public void testService() {
    bookService.save();
    }

}

SpringBoot整合MyBatis

serverTimezone=UTC一定记得设置时区,否则idea会爆连接数据库错误,让人以为是密码错了!!!

spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/ssm_db?serverTimezone=UTC
    username: root
    password: lyc
    type: com.alibaba.druid.pool.DruidDataSource
@Mapper
public interface BookDao {
    @Select("select * from tbl_book where id = #{id}")
    public Book getById(Integer id);
}

测试

@SpringBootTest
class Springboot08MybatisApplicationTests {

   @Autowired
   private BookDao bookDao;

   @Test
   void testGetById() {
      Book book = bookDao.getById(10);
      System.out.println(book);
   }

}

到此这篇关于SpringBoot整合第三方技术的实现的文章就介绍到这了,更多相关SpringBoot整合第三方内容请搜索码农之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持码农之家!


参考资料

相关文章

网友讨论