解决:ApplicationTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration


这是在运行测试类的时候提示报错信息;
原因是没有把启动类写好或者是没有配置启动类;
解决如下,
先是要正常写好启动类;
然后把启动类添加到运行的测试类,添加到这个地方:@SpringBootTest;
有两种填写方式,一种是:@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)

还有一种是网上反馈的方法:
@SpringBootTest(classes = {启动类.class })//这里加启动类

package com.itheima;

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.test.context.junit4.SpringRunner;

import com.itheima.domain.Person;

@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class ApplicationTest {
    @Autowired
    private Person person;

    @Test
    public void contextLoads() {
        System.out.println(person);
    }
}

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM