package com.sf; import com.sf.config.MyProperties; import com.sf.config.MyServiceBean; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; @SpringBootTest public class ApplicationTests { @Autowired private MyServiceBean serviceBean; @Autowired private MyProperties myProperties; @Test public void contextLoads() { // System.out.println(serviceBean.sayHello("zhangsan")); System.out.println(myProperties); } }