Is it possible to run JMeter with the JUnit plugin/sampler and Spring Java configuration? When I try to do this, the Spring autowired beans are not being created and although the test case runs, because the beans have not been created, I get null pointer exceptions.
I am using the Spring annotation
@SpringJUnit4ClassRunner
and @ContextConfiguration
to configure the JUnit test (which works). The goal is to be able to write JUnit test cases that can be measured for performance using JMeter.