上篇文章我们讲到 15、springboot整合 Junit 单元测试 ,这篇我们直接在里面 读取springboot核心配置文件
springboot读取核心配置文件的方式package com.example.demo.test; import com.example.demo.DemoApplication; import com.example.demo.service.IUserService; import lombok.extern.slf4j.Slf4j; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.core.env.Environment; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import javax.annotation.Resource; import java.util.List; /** * * springboot整合 Junit 单元测试 * @author yyh * * java.lang.NoClassDefFoundError: org/springframework/test/context/TestContextAnnotationUtils * 我的解决方式:最近加入的几个单元测试的依赖 version 版本给去掉
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)