16、springboot读取核心配置文件的方式

16、springboot读取核心配置文件的方式,第1张

16、springboot读取核心配置文件的方式

上篇文章我们讲到 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 版本给去掉

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5684931.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存