• 2023-05-04Spring整合Junit
    Spring整合Junit整合Junit与整合Druid和MyBatis差异比较大,为什么呢?Junit是一个搞单元测试用的工具,它不是我们程序的主体,也不会参加最终程序的运行,从作用上来说就和之前的东西不一样,它不是做功能的,看做是一个辅助工具就可以了。1、环境准备这块环境,大家可以直接使用Spring与Myb
  • 2023-01-29@ContextConfiguration的用法
    @ContextConfiguration的用法在SpringBoot测试@ContextConfiguration这个注解通常与@RunWith(SpringJUnit4ClassRunner.class)联合使用用来测试当一个类添加了注解@Com
  • 2022-12-24Spring 整合 Junit
    1、导入依赖<dependency><groupId>org.springframework</groupId><artifactId>spring-test</artifactId><version>5.3.2
  • 2022-12-05AliasFor注解-1
    一、AliasFor注解@AliasFor注解用于声明注解属性的别名,常用于组合注解。二、使用场景1)在一个注解中显示为属性设置别名如下1.1定义一个ContextConfigurati
  • 2022-11-24Spring 5 中文解析之测试篇-集成测试(上)
    本节(本章其余部分)涵盖了Spring应用程序的集成测试。它包括以下主题:​​概要​​​​集成测试目标​​​​JDBC测试支持​​​​注解​​​​SpringTestContext框架​​​​
  • 2022-11-24Spring集成Junit步骤
    1 导入Spring集成Junit的坐标2 使用@RunWith注解替换原来的运行期3 使用@ContextConfiguration指定配置文件或配置类4 使用@Autowired注入需要测试的对象5 
  • 2022-10-085.@AliasFor注解
    注解定义如下:1@Retention(RetentionPolicy.RUNTIME)2@Target(ElementType.METHOD)3@Documented4public@interfaceAliasFor{56@AliasFor("attrib
  • 2022-10-06@Documented 的作用
    1.@Documented的含义@Document是java在生成文档,是否显示注解的开关。2.加和不加有什么区别?测试注解@Target(ElementType.TYPE)@Retention(RetentionPolicy.RUNTIME)@D