Spring引导在集成测试中自动装配JsonDeserializer

时间:2016-06-09 11:43:36

标签: java spring spring-boot jackson autowired

我有一个应用程序需要一个服务是在JsonDeserializer中连接Spring。问题是,当我正常启动应用程序时,它是有线的,但是当我在测试中启动它时,它是空的。

相关代码是:

JSON Serializer / Deserializer:

@Component
public class CountryJsonSupport {

    @Component
    public static class Deserializer extends JsonDeserializer<Country> {

        @Autowired
        private CountryService service;

        @Override
        public Country deserialize(JsonParser jsonParser, DeserializationContext ctx) throws IOException {
            return service.getById(jsonParser.getValueAsLong());
        }
    }
}

域对象:

public class BookingLine extends AbstractEntity implements TelEntity {

    .....other fields

    //Hibernate annotations here....
    @JsonDeserialize(using = CountryJsonSupport.Deserializer.class)
    private Country targetingCountry;

    ..... other fields
}

测试类:

@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(Application.class)
@WebIntegrationTest({"server.port=0"})
@ActiveProfiles("test")
@DirtiesContext(classMode = DirtiesContext.ClassMode.AFTER_EACH_TEST_METHOD)
public class BookingAndLinesControllerFunctionalTest {

    @Test
    public void testGetBooking() {
        Booking booking = bookingRepositoryHelper.createBooking();
        bookingRepository.save(booking);
        String uri = String.format("http://localhost:%s/api/v1/booking-and-lines/" + booking.getBookingCode(), port);
        Booking booking1 = restTemplate.getForObject(uri, Booking.class); // line which falls over because countryService is null
    }
}

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

在摆弄足够长的时间之后管理以发现这个答案。只需要这样的配置:

@Configuration
@Profile("test")
public class TestConfig {

    @Bean
    public HandlerInstantiator handlerInstantiator() {
        return new SpringHandlerInstantiator(applicationContext.getAutowireCapableBeanFactory());
    }

    @Bean
    public Jackson2ObjectMapperBuilder jackson2ObjectMapperBuilder(HandlerInstantiator handlerInstantiator) {
        Jackson2ObjectMapperBuilder result = new Jackson2ObjectMapperBuilder();
        result.handlerInstantiator(handlerInstantiator);
        return result;
    }

    @Bean
    public MappingJackson2HttpMessageConverter mappingJackson2HttpMessageConverter(Jackson2ObjectMapperBuilder objectMapperBuilder) {
        return new MappingJackson2HttpMessageConverter(objectMapperBuilder.build());
    }

    @Bean
    public RestTemplate restTemplate(MappingJackson2HttpMessageConverter mappingJackson2HttpMessageConverter) {
        List<HttpMessageConverter<?>> messageConverterList = new ArrayList<>();
        messageConverterList.add(mappingJackson2HttpMessageConverter);
        return new RestTemplate(messageConverterList);
    }
}