SpringBoot 推荐给容器中添加组件的方式,推荐使用全注解的方式
1、配置类 @Configuration ------>相当于 Spring 的配置文件
2、使用 @Bean 给容器中添加组----相当于原来的 <bean id="testService" class="com.it.xxxxxx"></bean>
增加一个空的 service 用于测试
/**
* @Classname TestService
* @date 2019/8/25 13:41
*/
public class TestService {
}
配置类:
import com.atguigu.springboot.service.TestService;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* @Classname TestServiceConfig
* @date 2019/8/25 13:42
*/
@Configuration
public class TestServiceConfig {
@Bean
public TestService testService01(){
System.out.println("进入加载...");
return new TestService();
}
}
测试:
import com.atguigu.springboot.pojo.Person;
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.context.ApplicationContext;
import org.springframework.test.context.junit4.SpringRunner;
import javax.annotation.Resource;
@RunWith(SpringRunner.class)
@SpringBootTest
public class SpringBoot01HelloworldApplicationTests {
@Autowired
ApplicationContext ioc;
@Test
public void test01(){
//注入的id就是上面方法的名称
System.out.println(ioc.containsBean("testService01"));
}
}
结果:(方法会执行)