俺的一个项目使用了 feign, 相关代码如下
@EnableFeignClients
@SpringBootApplication
public class FoobarApp {
public static void main(String[] args) {
SpringApplication.run(FoobarApp.class, args);
}
}
@FeignClient(value = "service-name")
public interface BookService {
Book getBook(int book_id);
}
@RestController
public class BookController {
@Autowired BookService bookService;
// 其它使用 bookService 的地方
}
然后俺写的测试是
@SpringBootTest(classes = FoobarApp.class)
public class DemoTest {
@Autowired BookController controller;
}
现在的问题是, 跑测试时, controller 中注入的是自动生成的 BookService 代理实现, 现在俺想测试的时候, 注入一个假的 BookService 实现, 但不知怎么做.
有没有铁子指导一下?
PS: 好像这个 EnableFeignClients 注解自动为接口生成了代理并注入到了容器中, 但俺想跑测试的时候, 注入俺自已写的假的实现
1
chendy 2021-03-17 19:05:39 +08:00
如果可以的话,扔了 SpringBootTest,上 mockito 自己 mock 自己组装 bean
|