6.11. Spring 컨텍스트에서 자동 구성된 TypeConverter 정보
Camel 자동 구성에서는 Spring 컨텍스트에서 typeConverter
라는 TypeConverter
인스턴스를 등록합니다.
예제
@Component public class InvoiceProcessor { @Autowired private TypeConverter typeConverter; public long parseInvoiceValue(Invoice invoice) { String invoiceValue = invoice.grossValue(); return typeConverter.convertTo(Long.class, invoiceValue); } }
@Component
public class InvoiceProcessor {
@Autowired
private TypeConverter typeConverter;
public long parseInvoiceValue(Invoice invoice) {
String invoiceValue = invoice.grossValue();
return typeConverter.convertTo(Long.class, invoiceValue);
}
}