如何将模拟注入具有@Transactional 的@Service

How to inject mock into @Service that has @Transactional(如何将模拟注入具有@Transactional 的@Service)
本文介绍了如何将模拟注入具有@Transactional 的@Service的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

限时送ChatGPT账号..

我的单元测试中有任何问题,我有类似的东西.如果 blargh 函数使用 Transactional 注释,则模拟注入会在 someService 上被覆盖.如果我删除 Transactional ,则模拟会留在那里.从代码中可以看出,当服务中的函数被注释为事务时,Spring 会延迟加载服务,但在没有注释时会急切地加载服务.这会覆盖我注入的模拟.

I have any issue in my unit test where I have something along the lines of this. The mock injection get overridden on the someService if the blargh function is annotated with Transactional. If I remove the Transactional the mock stays there. From watching the code it appears that Spring lazily loads the services when a function in the service is annotated with transactinal, but eagerly loads the services when it isn't. This overrides the mock I injected.

有没有更好的方法来做到这一点?

Is there a better way to do this?

@Component
public class SomeTests
{
  @Autowired
  private SomeService someService;

  @Test
  @Transactional
  public void test(){
    FooBar fooBarMock = mock(FooBar.class);
    ReflectionTestUtils.setField(someService, "fooBar", fooBarMock);
  }
}

@Service
public class someService
{
  @Autowired FooBar foobar;

  @Transactional // <-- this causes the mocked item to be overridden
  public void blargh()
  {
    fooBar.doStuff();
  }
}

推荐答案

或许您可以尝试通过以下方式实现您的测试:

Probably you could try to implement your test in the following way:

@Component
@RunWith(MockitoJUnitRunner.class)
public class SomeTests
{
  @Mock private FooBar foobar;
  @InjectMocks private final SomeService someService = new SomeService();


  @Test
  @Transactional
  public void test(){
    when(fooBar.doStuff()).then....;
    someService.blargh() .....
  }
}

由于没有您的配置和相关代码,我现在无法尝试.但这是测试服务逻辑的常用方法之一.

I could not try it right now as don't have your config and related code. But this is one of the common way to test the service logic.

这篇关于如何将模拟注入具有@Transactional 的@Service的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How to send data to COM PORT using JAVA?(如何使用 JAVA 向 COM PORT 发送数据?)
How to make a report page direction to change to quot;rtlquot;?(如何使报表页面方向更改为“rtl?)
Use cyrillic .properties file in eclipse project(在 Eclipse 项目中使用西里尔文 .properties 文件)
Is there any way to detect an RTL language in Java?(有没有办法在 Java 中检测 RTL 语言?)
How to load resource bundle messages from DB in Java?(如何在 Java 中从 DB 加载资源包消息?)
How do I change the default locale settings in Java to make them consistent?(如何更改 Java 中的默认语言环境设置以使其保持一致?)